RedBlackTree.remove

Range remove(Range r)

Removes the given range from the container.

Returns

A range containing all of the elements that were after the

given range.

Complexity: m * log(n) (where m is the number of elements in the range)

Range remove(Take!Range r)

Removes the given Take!Range from the container

Returns

A range containing all of the elements that were after the

given range.

Complexity: m * log(n) (where m is the number of elements in the range)