package owl

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type 'a t = {
  1. mutable used : int;
  2. mutable size : int;
  3. mutable data : 'a array;
}
val allocate_space : 'a array -> 'a array
val make : unit -> 'a t
val push : 'a t -> 'a -> unit
val pop : 'a t -> 'a option
val peek : 'a t -> 'a option
val is_empty : 'a t -> bool
val to_array : 'a t -> 'a array