Stack.slice

struct Stack(V, int Size = 0)
V[]
slice
()

Return Value

Type: V[]

The stack as an array of values, where the first array entry represents the oldest value.

Doing a foreach() on the returned array will traverse in the opposite direction of foreach() upon a stack.

Meta