packstream-0.1.0.0: PackStream converter for Neo4j BOLT protocol
Safe HaskellNone
LanguageHaskell2010

Data.PackStream.Parser

Synopsis

Documentation

null :: PackStream () Source #

Parse ()

list :: PackStream a -> PackStream [a] Source #

Parse a list of specified Values (e.g. `list integer` will parse some '[Int]')

dict :: forall a. PackStream a -> PackStream (Map Text a) Source #

Parse a dictionary of specified Values (e.g. `dict integer` will parse some 'Map Text Int')

value :: PackStream Value Source #

Parse any valid Value