Hi,
I'm working on a new input method that semi-automatically generates a
map from mnemonics to output text using combining characters. E.g.,
given the configuration that l is Latin, e is the letter e, ^ is
circumflex, and ' is acute, it translates le^' into ế without any
additional configuration.
To generate letters that don't have single code point precomposed forms,
I'm currently using CLDR exemplar sets to try to get a list of all
letters from all languages. I'd like to use
https://www.unicode.org/Public/UNIDATA/NamedSequences.txt (and
NamedSequencesProv.txt too) to supplement that, but I don't see any API.
Am I missing some way to get a list of all named sequences with icu4c?
To prevent generating discouraged sequences, I'm currently testing for
the Deprecated property. I'd like to also check
https://www.unicode.org/Public/UNIDATA/DoNotEmit.txt but I don't see an
API for that either. Same question as above, am I missing something?