|
|
@ -27,6 +27,7 @@ val combine : 'a t -> 'b t -> ('a * 'b) t option
|
|
|
|
val combine_exn : 'a t -> 'b t -> ('a * 'b) t
|
|
|
|
val combine_exn : 'a t -> 'b t -> ('a * 'b) t
|
|
|
|
val is_empty : 'a t -> bool
|
|
|
|
val is_empty : 'a t -> bool
|
|
|
|
val mem : 'a -> 'a t -> eq:('a -> 'a -> bool) -> bool
|
|
|
|
val mem : 'a -> 'a t -> eq:('a -> 'a -> bool) -> bool
|
|
|
|
|
|
|
|
val contains_adjacent_duplicate : eq:('a -> 'a -> bool) -> 'a t -> bool
|
|
|
|
val iter : 'a t -> f:('a -> unit) -> unit
|
|
|
|
val iter : 'a t -> f:('a -> unit) -> unit
|
|
|
|
val iteri : 'a t -> f:(int -> 'a -> unit) -> unit
|
|
|
|
val iteri : 'a t -> f:(int -> 'a -> unit) -> unit
|
|
|
|
val exists : 'a t -> f:('a -> bool) -> bool
|
|
|
|
val exists : 'a t -> f:('a -> bool) -> bool
|
|
|
|