Module

Bookhound.Parsers.Collections

Package
purescript-bookhound
Repository
albertprz/purescript-bookhound

#collOf Source

collOf :: forall a b c d. Parser a -> Parser b -> Parser c -> Parser d -> Parser (Array d)

#listOf Source

listOf :: forall a. Parser a -> Parser (Array a)

#tupleOf Source

tupleOf :: forall a. Parser a -> Parser (Array a)

#mapOf Source

mapOf :: forall a b c. Ord b => Parser a -> Parser b -> Parser c -> Parser (Map b c)