Idris2Doc : Text.ILex.Runner

Text.ILex.Runner

(source)

Reexports

importpublic Text.ParseError
importpublic Text.FC
importpublic Text.ILex.Parser

Definitions

run : Parser1ea->IBuffern->Eitherea
  Tries to parse a byte vector into a value.

Totality: total
Visibility: export
runString : Parser1ea->String->Eitherea
  Like `run` but processes a UTF-8 string instead.

Totality: total
Visibility: export
runBytes : Parser1ea->ByteString->Eitherea
  Like `run` but processes a `ByteString` instead.

Totality: total
Visibility: export
parse : Parser1 (BoundedErre) a->Origin->IBuffern->Either (ParseErrore) a
  Like `run` but fails with a proper parse error
including error bounds and highlighting of
the section where an error occurred.

Totality: total
Visibility: export
parseString : Parser1 (BoundedErre) a->Origin->String->Either (ParseErrore) a
  Like `parse` but processes a UTF-8 string instead.

Totality: total
Visibility: export
parseBytes : Parser1 (BoundedErre) a->Origin->ByteString->Either (ParseErrore) a
  Like `parse` but processes a `ByteString` instead.

Totality: total
Visibility: export