rethinkdb-2.0.0.0: A driver for RethinkDB 2.0

Safe HaskellNone
LanguageHaskell98

Database.RethinkDB.Datum

Synopsis

Documentation

parse :: (a -> Parser b) -> a -> Result b

Run a Parser.

data Parser a :: * -> *

A continuation-based parser type.

data Result a :: * -> *

The result of running a Parser.

Constructors

Error String 
Success a 

newtype GeoLine Source

Constructors

GeoLine 

(.=) :: ToDatum a => Text -> a -> (Text, Datum) Source