Module

Data.Postgres.Unresult

Package
purescript-postgresql
Repository
cakekindel/purescript-postgresql

#Unresult Source

type Unresult a = StateT { ix :: Int, row :: Array Raw } RepT a

Monad used to incrementally deserialize columns from a row

#unresult Source

unresult :: forall a. Unresult a -> Array Raw -> RepT a

Run an UnresultT

#take Source

take :: forall a. Deserialize a => Unresult a

Take the next column from the row, unmarshalling into a