package stdune

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Array.SetSource

Sourcetype elt = t
Sourcetype t
Sourceval empty : t
Sourceval is_empty : t -> bool
Sourceval mem : t -> elt -> bool
Sourceval of_list : elt list -> t
Sourceval of_sorted_list : elt list -> t
Sourceval union : t -> t -> t
Sourceval equal : t -> t -> bool
Sourceval is_subset : t -> of_:t -> bool
Sourceval are_disjoint : t -> t -> bool
Sourceval diff : t -> t -> t
Sourceval filter : t -> f:(elt -> bool) -> t
Sourceval fold : t -> init:'a -> f:(elt -> 'a -> 'a) -> 'a
Sourceval to_list : t -> elt list
Sourceval to_list_map : t -> f:(elt -> 'a) -> 'a list