RedBlackTree.front

The front element in the container

Complexity: O(1)

class RedBlackTree(T, alias less = "a < b", bool allowDuplicates = false)
ref inout
inout(Elem)
front
()
if (
is(typeof(
(
ref const T a
)
=> binaryFun!less(a, a)
))
)

Meta