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.

  1. template codepointTrie(T, sizes...)
  2. template CodepointTrie(T, sizes...)
    template CodepointTrie (
    T
    sizes...
    ) if (
    sumOfIntegerTuple!sizes == 21
    ) {}

Meta

Suggestion Box / Bug Report