Copyright | (c) 2012-2016 Bryan O'Sullivan (c) 2011 MailRank, Inc. |
---|---|
License | BSD3 |
Maintainer | Bryan O'Sullivan <bos@serpentine.com> |
Stability | experimental |
Portability | portable |
Safe Haskell | None |
Language | Haskell2010 |
- encode :: ToJSON a => a -> ByteString
- encodeToBuilder :: Value -> Builder
- encodeToTextBuilder :: Value -> Builder
- fromValue :: Value -> Builder
Documentation
encode :: ToJSON a => a -> ByteString Source
Efficiently serialize a JSON value as a lazy ByteString
.
This is implemented in terms of the ToJSON
class's toEncoding
method.
Encoding to Builders
encodeToBuilder :: Value -> Builder Source
Encode a JSON value to a Data.ByteString Builder
.
Use this function if you are encoding over the wire, or need to prepend or append further bytes to the encoded JSON value.
encodeToTextBuilder :: Value -> Builder Source
Encode a JSON Value
to a Data.Text Builder
, which can be
embedded efficiently in a text-based protocol.
If you are going to immediately encode straight to a
ByteString
, it is more efficient to use encodeToBuilder
instead.
Deprecated
fromValue :: Value -> Builder Source
Deprecated: Use encodeToTextBuilder
instead