nulib.collections.stack

Stacks

Members

Aliases

stack
alias stack(T) = StackImpl!(T, true)

A stack which owns the memory it contains.

weak_stack
alias weak_stack(T) = StackImpl!(T, false)

A stack which does not own the memory it contains.

Structs

StackImpl
struct StackImpl(T, bool ownsMemory = true)

A @nogc dynamic stack

Meta

Authors

Luna Nielsen