CodepointTrie

A slightly more general tool for building fixed Trie for the Unicode data.

Specifically unlike codepointSetTrie it's allows creating mappings of dchar to an arbitrary type T.

Note: Overload taking CodepointSets will naturally convert only to bool mapping Tries.

CodepointTrie is the type of Trie as generated by codepointTrie function.

template CodepointTrie (
T
sizes...
) if (
sumOfIntegerTuple!sizes == 21
) {}

Meta