StackRange

A StackRange can be used to iterate a stack (starting from top, going to bottom) without modifying it.

The stack cannot be modified while it has any range attached to it.

Constructors

this
this()
Undocumented in source.

Members

Functions

empty
bool empty()
front
inout(T) front()
popFront
void popFront()

Advance to the next item of the range.

Meta