Safe Haskell | None |
---|---|
Language | Haskell2010 |
Synopsis
- null :: PackStream ()
- bool :: PackStream Bool
- integer :: PackStream Int
- float :: PackStream Double
- bytes :: PackStream ByteString
- string :: PackStream Text
- list :: PackStream a -> PackStream [a]
- dict :: forall a. PackStream a -> PackStream (Map Text a)
- structure :: PackStream Structure
- value :: PackStream Value
Documentation
null :: PackStream () Source #
Parse ()
bytes :: PackStream ByteString Source #
Parse ByteString
list :: PackStream a -> PackStream [a] Source #
Parse a list of specified Value
s (e.g. `list integer` will parse some '[Int]')
dict :: forall a. PackStream a -> PackStream (Map Text a) Source #
Parse a dictionary of specified Value
s (e.g. `dict integer` will parse some 'Map Text Int')