run : Parser1 e a -> IBuffer n -> Either e a Tries to parse a byte vector into a value.
Totality: total
Visibility: exportrunString : Parser1 e a -> String -> Either e a Like `run` but processes a UTF-8 string instead.
Totality: total
Visibility: exportrunBytes : Parser1 e a -> ByteString -> Either e a Like `run` but processes a `ByteString` instead.
Totality: total
Visibility: exportparse : Parser1 (BoundedErr e) a -> Origin -> IBuffer n -> Either (ParseError e) 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: exportparseString : Parser1 (BoundedErr e) a -> Origin -> String -> Either (ParseError e) a Like `parse` but processes a UTF-8 string instead.
Totality: total
Visibility: exportparseBytes : Parser1 (BoundedErr e) a -> Origin -> ByteString -> Either (ParseError e) a Like `parse` but processes a `ByteString` instead.
Totality: total
Visibility: export