RedBlackTree.length

Returns the number of elements in the container.

Complexity: O(1).

class RedBlackTree(T, alias less = "a < b", bool allowDuplicates = false)
@property const
size_t
length
()
if (
is(typeof(
(
ref const T a
)
=> binaryFun!less(a, a)
))
)

Meta