Module type CCMap.S
include Stdlib.Map.S
val empty : 'a t
val is_empty : 'a t -> bool
val mem : key -> 'a t -> bool
val add : key -> 'a -> 'a t -> 'a t
val update : key -> ('a option -> 'a option) -> 'a t -> 'a t
val singleton : key -> 'a -> 'a t
val remove : key -> 'a t -> 'a t
val merge : (key -> 'a option -> 'b option -> 'c option) -> 'a t -> 'b t -> 'c t
val union : (key -> 'a -> 'a -> 'a option) -> 'a t -> 'a t -> 'a t
val compare : ('a -> 'a -> int) -> 'a t -> 'a t -> int
val equal : ('a -> 'a -> bool) -> 'a t -> 'a t -> bool
val iter : (key -> 'a -> unit) -> 'a t -> unit
val fold : (key -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'b
val for_all : (key -> 'a -> bool) -> 'a t -> bool
val exists : (key -> 'a -> bool) -> 'a t -> bool
val filter : (key -> 'a -> bool) -> 'a t -> 'a t
val partition : (key -> 'a -> bool) -> 'a t -> 'a t * 'a t
val cardinal : 'a t -> int
val bindings : 'a t -> (key * 'a) list
val min_binding : 'a t -> key * 'a
val min_binding_opt : 'a t -> (key * 'a) option
val max_binding : 'a t -> key * 'a
val max_binding_opt : 'a t -> (key * 'a) option
val choose : 'a t -> key * 'a
val choose_opt : 'a t -> (key * 'a) option
val split : key -> 'a t -> 'a t * 'a option * 'a t
val find : key -> 'a t -> 'a
val find_opt : key -> 'a t -> 'a option
val find_first : (key -> bool) -> 'a t -> key * 'a
val find_first_opt : (key -> bool) -> 'a t -> (key * 'a) option
val find_last : (key -> bool) -> 'a t -> key * 'a
val find_last_opt : (key -> bool) -> 'a t -> (key * 'a) option
val map : ('a -> 'b) -> 'a t -> 'b t
val mapi : (key -> 'a -> 'b) -> 'a t -> 'b t
val to_seq : 'a t -> (key * 'a) Stdlib.Seq.t
val to_seq_from : key -> 'a t -> (key * 'a) Stdlib.Seq.t
val add_seq : (key * 'a) Stdlib.Seq.t -> 'a t -> 'a t
val of_seq : (key * 'a) Stdlib.Seq.t -> 'a t
val get : key -> 'a t -> 'a option
get k m
returnsSome v
if the current binding ofk
inm
isv
, orNone
if the keyk
is not present. Safe version offind
.
val get_or : key -> 'a t -> default:'a -> 'a
get_or k m ~default
returns the value associated tok
if present, and returnsdefault
otherwise (ifk
doesn't belong inm
).- since
- 0.16
val update : key -> ('a option -> 'a option) -> 'a t -> 'a t
update k f m
callsf (Some v)
iffind k m = v
, otherwise it callsf None
. In any case, if the result isNone
k
is removed fromm
, and if the result isSome v'
thenadd k v' m
is returned.
val choose_opt : 'a t -> (key * 'a) option
choose_opt m
returns one binding of the given mapm
, orNone
ifm
is empty. Safe version ofchoose
.- since
- 1.5
val min_binding_opt : 'a t -> (key * 'a) option
min_binding_opt m
returns the smallest binding of the given mapm
, orNone
ifm
is empty. Safe version ofmin_binding
.- since
- 1.5
val max_binding_opt : 'a t -> (key * 'a) option
max_binding_opt m
returns the largest binding of the given mapm
, orNone
ifm
is empty. Safe version ofmax_binding
.- since
- 1.5
val find_opt : key -> 'a t -> 'a option
find_opt k m
returnsSome v
if the current binding ofk
inm
isv
, orNone
if the keyk
is not present. Safe version offind
.- since
- 1.5
val find_first : (key -> bool) -> 'a t -> key * 'a
find_first f m
wheref
is a monotonically increasing function, returns the binding ofm
with the lowest keyk
such thatf k
, or raisesNot_found
if no such key exists. SeeMap
.S.find_first.- since
- 1.5
val find_first_opt : (key -> bool) -> 'a t -> (key * 'a) option
find_first_opt f m
wheref
is a monotonically increasing function, returns an option containing the binding ofm
with the lowest keyk
such thatf k
, orNone
if no such key exists. Safe version offind_first
.- since
- 1.5
val merge_safe : f:(key -> [ `Left of 'a | `Right of 'b | `Both of 'a * 'b ] -> 'c option) -> 'a t -> 'b t -> 'c t
merge_safe ~f a b
merges the mapsa
andb
together.- since
- 0.17
val of_iter : (key * 'a) iter -> 'a t
of_iter iter
builds a map from the giveniter
of bindings. Likeof_list
.- since
- 2.8
val add_seq : 'a t -> (key * 'a) Stdlib.Seq.t -> 'a t
add_seq m seq
adds the givenSeq.t
of bindings to the mapm
. Likeadd_list
. Renamed fromadd_std_seq
since 3.0.- since
- 3.0
val of_seq : (key * 'a) Stdlib.Seq.t -> 'a t
of_seq seq
builds a map from the givenSeq.t
of bindings. Likeof_list
. Renamed fromof_std_seq
since 3.0.- since
- 3.0
val add_iter : 'a t -> (key * 'a) iter -> 'a t
add_iter m iter
adds the giveniter
of bindings to the mapm
. Likeadd_list
.- since
- 2.8
val of_iter : (key * 'a) iter -> 'a t
of_iter iter
builds a map from the giveniter
of bindings. Likeof_list
.- since
- 2.8
val to_iter : 'a t -> (key * 'a) iter
to_iter m
iterates on the whole mapm
, creating aniter
of bindings. Liketo_list
.- since
- 2.8
val of_list : (key * 'a) list -> 'a t
of_list l
builds a map from the given listl
of bindingsk_i -> v_i
, added in order usingadd
. If a key occurs several times, only its last binding will be present in the result.
val add_list : 'a t -> (key * 'a) list -> 'a t
add_list m l
adds the given listl
of bindings to the mapm
.- since
- 0.14
val values : 'a t -> 'a iter
values m
iterates on the values ofm
only, creating aniter
of values.- since
- 0.15