Processing as bytes works fine for the Latin alphabet, but processing as runes could allow the library to process other Unicode alphabets, using unicode.ToLower and related stdlib functions.
It might be even more useful to support both kinds of processing, perhaps a separate set of functions for Unicode, e.g. `ToCamelCaseUnicode", etc.
Very useful library. Thank you. :)
Processing as bytes works fine for the Latin alphabet, but processing as runes could allow the library to process other Unicode alphabets, using
unicode.ToLower
and related stdlib functions.It might be even more useful to support both kinds of processing, perhaps a separate set of functions for Unicode, e.g. `ToCamelCaseUnicode", etc.