OrderedIndex.OrderedRangeT

The range type for this index, which embodies a bidirectional range

mixin template OrderedIndex(size_t N, bool allowDuplicates, alias KeyFromValue, alias Compare, ThisContainer)
struct OrderedRangeT (
bool is_const
) {
Container c;
}

Members

Functions

popBack
void popBack()

pop the back element from the range

popFront
void popFront()

pop the front element from the range

Properties

back
back [@property getter]

Returns the last element in the range

empty
bool empty [@property getter]

Returns true if the range is empty

front
front [@property getter]

Returns the first element in the range

save
save [@property getter]

Trivial save implementation, needed for isForwardRange.

Meta