Module

Data.Table.Parse.Internal

Package
purescript-tables-parse
Repository
colehaus/purescript-tables-parse

#spaces Source

spaces :: forall m. Functor m => Monad m => ParserT String m Unit

#colSep Source

colSep :: forall m. Monad m => ParserT String m Unit

#word Source

word :: forall m. Functor m => Monad m => ParserT String m String

#colContent Source

colContent :: forall m. Monad m => ParserT String m String

#row Source

row :: forall m. Monad m => ParserT String m (List String)

#rows Source

rows :: forall m. Monad m => ParserT String m (List (List String))

#header Source

header :: forall m. Monad m => ParserT String m (List String)

#line Source

line :: forall m. Monad m => ParserT String m (List Char)

#sameLengths Source

sameLengths :: forall a t f. Foldable f => Functor f => Foldable t => Functor t => f (t a) -> Boolean

#nonEmptify Source