Documentation
Parser
.
Prelude
Search
return to top
source
Imports
Batteries
Init
UnicodeBasic
Imported by
instStreamSliceChar_parser
source
instance
instStreamSliceChar_parser
:
Std.Stream
String.Slice
Char
Equations
instStreamSliceChar_parser
=
{
next?
:=
fun (
s
:
String.Slice
) =>
do let
c
←
s
.
front?
pure
(
c
,
s
.
drop
1
)
}