Module

Data.GraphQL.Parser

Package
purescript-graphql-client
Repository
OxfordAbstracts/purescript-graphql-client

#sepEndBy_ Source

sepEndBy_ :: forall m s a sep. Monad m => ParserT s m a -> ParserT s m sep -> ParserT s m (List a)

Parse phrases delimited and optionally terminated by a separator.

#sepEndBy1_ Source

sepEndBy1_ :: forall m s a sep. Monad m => ParserT s m a -> ParserT s m sep -> ParserT s m (List a)

Parse phrases delimited and optionally terminated by a separator, requiring at least one match.

#_listish Source

_listish :: forall p. Parser String p -> Parser String (List p)

#_listish1 Source

_listish1 :: forall p. Parser String p -> Parser String (List p)

#listish Source

listish :: forall p. String -> String -> Parser String p -> Parser String (List p)

#ooo Source

ooo :: forall a. Parser String a -> Parser String (Maybe a)