Current version of alphanum, upper, lower parser accepts only latin chars while Haskell's parsers accept all unicode chars.
I know that Dart doesn't have methods to test char agains unicode class, but we could implement it on our own but we can use http://www.unicode.org/Public/6.3.0/ucd/UnicodeData.txt to generate predicates which work with all unicode chars.
Does it makes sense? Or this shouldn't be part of parsers library?
Current version of alphanum, upper, lower parser accepts only latin chars while Haskell's parsers accept all unicode chars.
I know that Dart doesn't have methods to test char agains unicode class, but we could implement it on our own but we can use http://www.unicode.org/Public/6.3.0/ucd/UnicodeData.txt to generate predicates which work with all unicode chars.
Does it makes sense? Or this shouldn't be part of parsers library?