ArrayTrie.this

@param capacity The capacity of the trie, which at the worst case is the total number of characters of all keys stored in the Trie. The capacity needed is dependent of the shared prefixes of the keys. For example, a capacity of 6 nodes is required to store keys "foo" and "bar", but a capacity of only 4 is required to store "bar" and "bat".

  1. this()
  2. this(int capacity)
    class ArrayTrie(V)
    this
    ()

Meta