Module Base__Stack_intf

An interface for stacks that follows Core's conventions, as opposed to OCaml's standard Stack module.

module type S = sig ... end
module type Stack = sig ... end

A stack implemented with an array.