RadixTree.insert

Insert element elt.

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

Return Value

Type: bool

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

Meta