keen/col/mut-stack
Sourcemut-stack[t] record (has private fields)peek[t] t option(a t mut-stack)Returns the top element of the stack without removing it. Returns an empty option if
a is-empty.mut-stack[t] record (has private fields)peek[t] t option(a t mut-stack)a is-empty.
Mutable stack.
Elements are pushed and popped from the top of the stack. Iterates from the bottom (least recently pushed) to the top (most recently pushed).