RedBlackTree.this

Constructor. Pass in an array of elements, or individual elements to initialize the tree with.

  1. this(Elem[] elems)
    class RedBlackTree(T, alias less = "a < b", bool allowDuplicates = false)
    this
    if (
    is(typeof(
    (
    ref const T a
    )
    => binaryFun!less(a, a)
    ))
    )
  2. this(Stuff stuff)
  3. this()

Meta