TTree.insert

Returns true if any values were added. This is not a stable insert. You will get strange results if you insert into a tree while iterating over it.

  1. bool insert(T value)
  2. bool insert(R r)
    struct TTree(T, bool allowDuplicates = false, alias less = "a < b", bool supportGC = true, size_t cacheLineSize = 64)
    bool
    insert
    (
    R
    )
    (
    R r
    )
  3. bool insert(T[] values)

Meta