Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
type 'a t = 'a set
val empty : 'a t
val is_empty : 'a t -> bool
val mem : 'a -> 'a t -> bool
val singleton : 'a -> 'a t
val choose : 'a t -> 'a
val choose_opt : 'a t -> 'a option
val fold : ('b -> 'a -> 'a) -> 'b t -> 'a -> 'a
val for_all : ('a -> bool) -> 'a t -> bool
val _exists : ('a -> bool) -> 'a t -> bool
val to_list : 'a t -> 'a list
val of_list : 'a list -> 'a t