Safe Haskell | None |
---|---|
Language | Haskell2010 |
Convertion to and from aeson
Value
.
Synopsis
- decode :: FromJSON a => ByteString -> Maybe a
- eitherDecode :: FromJSON a => ByteString -> Either String a
- throwDecode :: (FromJSON a, MonadThrow m) => ByteString -> m a
- decodeStrict :: FromJSON a => ByteString -> Maybe a
- eitherDecodeStrict :: FromJSON a => ByteString -> Either String a
- throwDecodeStrict :: (FromJSON a, MonadThrow m) => ByteString -> m a
- decodeStrictText :: FromJSON a => Text -> Maybe a
- eitherDecodeStrictText :: FromJSON a => Text -> Either String a
- throwDecodeStrictText :: (FromJSON a, MonadThrow m) => Text -> m a
- toEitherValue :: Tokens k e -> Either e (Value, k)
- unescapeText :: ByteString -> Either UnicodeException Text
Documentation
decode :: FromJSON a => ByteString -> Maybe a Source #
Efficiently deserialize a JSON value from a lazy ByteString
.
If this fails due to incomplete or invalid input, Nothing
is
returned.
eitherDecode :: FromJSON a => ByteString -> Either String a Source #
Like decode
but returns an error message when decoding fails.
throwDecode :: (FromJSON a, MonadThrow m) => ByteString -> m a Source #
Like decode
but throws an AesonException
when decoding fails.
throwDecode
is in aeson
since 2.1.2.0, but this variant is added later.
decodeStrict :: FromJSON a => ByteString -> Maybe a Source #
Efficiently deserialize a JSON value from a strict ByteString
.
If this fails due to incomplete or invalid input, Nothing
is
returned.
eitherDecodeStrict :: FromJSON a => ByteString -> Either String a Source #
Like decodeStrict
but returns an error message when decoding fails.
throwDecodeStrict :: (FromJSON a, MonadThrow m) => ByteString -> m a Source #
Like decodeStrict
but throws an AesonException
when decoding fails.
eitherDecodeStrictText :: FromJSON a => Text -> Either String a Source #
Like decodeStrictText
but returns an error message when decoding fails.
Since: 2.2.1.0
throwDecodeStrictText :: (FromJSON a, MonadThrow m) => Text -> m a Source #
Like decodeStrictText
but throws an AesonException
when decoding fails.
Since: 2.2.1.0
unescapeText :: ByteString -> Either UnicodeException Text Source #
Unescape JSON text literal.
This function is exporeted mostly for testing and benchmarking purposes.