Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
val iter : ('a -> unit) -> 'a t -> unit
val fold : ('a -> 'b -> 'b) -> 'b -> 'a t -> 'b
val iteri : (int -> 'a -> unit) -> 'a t -> unit
val foldi : (int -> 'a -> 'b -> 'b) -> 'b -> 'a t -> 'b
val find : ('a -> bool) -> 'a t -> 'a
val is_empty : 'a t -> bool
val peek : 'a t -> 'a option
val get : 'a t -> 'a option
val push : 'a t -> 'a -> unit
val junk : 'a t -> unit
val force : 'a t -> unit
val empty : unit -> 'a t
val from : (unit -> 'a) -> 'a t
val init : int -> (int -> 'a) -> 'a t
val count : 'a t -> int
val fast_count : 'a t -> bool