mu_Stack

Defines a stack with a maximum number of items that can be inserted.

extern (C)
struct mu_Stack (
T
size_t n
) {}

Members

Functions

pop
void pop()
Undocumented in source. Be warned that the author may not have intended to support it.
push
void push(T val)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

idx
size_t idx;
Undocumented in source.
items
T[n] items;
Undocumented in source.

Meta