Closed
Description
Unicode defines the category L
for letter similar to others. We already have different accessors on char
based on unicode and it would make sense to also check if the char
is on a letter boundary (so for example you can split on non-letter boundaries). Go has a similar function available in its unicode package: https://golang.org/pkg/unicode/#IsLetter
Right now I'm using the unicode_categories
crate but I think it has some bugs and I wonder if such basic unicode properties on char make sense to be part of stdlib directly.