Trie.put

Put an entry into the Trie

@param s The key for the entry @param v The value of the entry @return True if the Trie had capacity to add the field.

  1. bool put(string s, V v)
    interface Trie(V)
    bool
    put
    (
    string s
    ,
    V v
    )
  2. bool put(V v)

Meta