You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yeah many doesn't work with parsers that can successfully consume zero characters; you can parse an infinite number of empty strings. I'm not sure how to fix this without distinguishing between empty and non-empty parsers at the type level.
There is no termination, once the compiler starts on
val la = many(takeWhile(c => c != 'r')).parseOnly("awe")
.The text was updated successfully, but these errors were encountered: