RadixTree.insert

Insert key with value.

  1. bool insert(ElementType e)
  2. bool insert(MK key, V value)
    struct RadixTree(K, V, A = Mallocator)
    @nogc
    static if(RawTree.hasValue)
    bool
    insert
    (
    const scope MK key
    ,)
  3. bool insert(MK key)

Return Value

Type: bool

true if key wasn't previously added, false otherwise.

Meta