RadixTree.insert

Insert key.

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

Return Value

Type: bool

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

Meta