JuliaStrings / utf8proc

a clean C library for processing UTF-8 Unicode data
http://juliastrings.github.io/utf8proc/
Other
1.03k stars 137 forks source link

ID_Start, ID_Continue, etc. #242

Open jacobfriedman opened 2 years ago

jacobfriedman commented 2 years ago

I was looking for mention of ID_Start, XID_Start, ID_Continue and XID_Continie but can't find any documentation/code.

Is this a welcomed addition to this library?

https://www.unicode.org/reports/tr31/

stevengj commented 2 years ago

We already provide Unicode category codes, so you an use this to implement TR31 if you want.

(Julia supports a wider range of identifier characters, so we don't need this functionality ourselves.)