-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Pure-Haskell utilities for dealing with JSON with the enumerator package. -- -- Provides the ability to render JSON in a streaming manner using the -- enumerator package. @package json-enumerator @version 0.0.0 module Text.JSON.Enumerator renderEvents :: Monad m => Enumeratee Event Builder m b renderEventsToBytes :: MonadIO m => Enumeratee Event ByteString m b renderValue :: Value -> Builder renderAtom :: Atom -> Builder data JsonException UnexpectedEndArray :: GState -> JsonException UnexpectedEndObject :: GState -> JsonException UnexpectedAttributeName :: Text -> GState -> JsonException ExpectedAttributeName :: GState -> JsonException instance Typeable JsonException instance Show JsonException instance Show GState instance Exception JsonException