-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Parses and renders RISON strings. -- -- Rison gets parsed into and serialized from Aeson Valueobjects. Please -- see README.md for details. @package rison @version 1.1.0.0 module Data.Rison decode :: FromJSON a => ByteString -> Either String a encode :: ToJSON a => a -> ByteString