I found this function in the source code of elm/parser:
isChar : Char -> Bool
isChar char =
True
Why does this function exist?
I found this function in the source code of elm/parser:
isChar : Char -> Bool
isChar char =
True
Why does this function exist?
I have been writing P.chompIf (\_ -> True) quite a lot recently as it happens. Guaranteed chomping is certainly useful