Module Prime_enummap.Make

Parameters

Signature

include S with type key = Key.t
type key = Key.t

The type of the keys of the map.

type 'a t

The type of the map.

val empty : 'a t

The empty map.

val singleton : key -> 'a -> 'a t

singleton k e is the one-element map binding k to e.

val is_empty : 'a t -> bool

Holds for the empty map only.

val cardinal : 'a t -> int

cardinal m is the cardinality of m.

val mem : key -> 'a t -> bool

mem k m is true iff m has a binding for k.

val app : 'a t -> key -> 'a option

app m is the partial function corresponding to m. This is the same as find except for the argument ordering and that it does not raise any exception.

val find : key -> 'a t -> 'a

find k m returns the binding for k in m or raises Not_found if it is unbound.

val find_opt : key -> 'a t -> 'a option
val locate : key -> 'a t -> bool * int

locate k m is a pair (present, pos) where present is true iff k is bound in m and pos is the number of keys of m preceding k.

val get : 'a t -> int -> 'a

get i m is the ith value of m.

raises Invalid_argument

if the index is out of bounds.

val get_binding : 'a t -> int -> key * 'a

get_binding m i is the ith binding of m according to the key order.

val min_binding : 'a t -> (key * 'a) option

min_binding m is the binding of m with the smallest key.

val max_binding : 'a t -> (key * 'a) option

max_binding m is the binding of m with the largest key.

val pred_binding : 'a t -> key -> (key * 'a) option

pred_binding m k is the last binding strictly before k in m.

val succ_binding : 'a t -> key -> (key * 'a) option

succ_binding m k is the first binding strictly after k in m.

val add : key -> 'a -> 'a t -> 'a t

add k e m is the map which agrees with m on all keys except that k is mapped to e.

val pop : key -> 'a t -> ('a * 'a t) option

pop k m is Some (k, remove k m) if m binds k to e, otherwise None.

val pop_min : 'a t -> key * 'a * 'a t

pop_min m is the tuple (k, e, m') where (k, e) is the binding of m with the minimal key and m' is the remainder of m.

val pop_max : 'a t -> key * 'a * 'a t

pop_max m is the tuple (k, e, m') where (k, e) is the binding of m with the maximum key and m' is the remainder of m.

val remove : key -> 'a t -> 'a t

remove k m is the map which agrees with m on all keys except that k is unbound. If k is unbound in m, then remove k m is m.

val update : key -> ('a option -> 'a option) -> 'a t -> 'a t

update k f m is the map m with k rebound to f v where v is the current binding of k in m and None means no binding for both argument and result.

val cut_binding : key -> 'a t -> 'a option * 'a t * 'a t

cut_binding k m is (e_opt, sL, sR) where e_opt is the element bound to k, if any, and sL and sR are the submaps of m with keys smaller or langer than k, respectively.

val bindings : 'a t -> (key * 'a) list

A (key, element) pair for each binding of the map in key order.

val of_ordered_bindings : (key * 'a) list -> 'a t

Assuming bindings is a key-ordered list of bindings, as returned from bindings, of_ordered_bindings bindings is a map containing precisely those bindings, computed in linear time. This is an optimisation of List.fold (uncurry add) bindings empty.

raises Invalid_argument

of bindings is not sorted.

val asc_bindings : ?⁠where:(key -> int) -> 'a t -> (key * 'a) Stdlib.Seq.t

asc_bindings ?where m is the sequence of bindings of e in order of increasing keys, optionally restricted to keys in a subrange given by where.

parameter where

must be monotonically increasing, in which case the returned bindings will be the continuous range with keys at which this function evaluates to zero.

val dsc_bindings : ?⁠where:(key -> int) -> 'a t -> (key * 'a) Stdlib.Seq.t

dsc_bindings ?where m is the sequence of bindings of m in order of decreasing keys, optionally restricted to keys in a subrange given by where.

parameter where

must be monotonically increasing, in which case the returned bindings will be the continuous range with keys at which this function evaluates to zero.

search f m is the first f k e for k ↦ e in m which is different from None, or None if no such mapping exists in m.

val fold : (key -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'b

fold f m is the composition of f k e for each (k, e) in m, applied in order of increasing keys.

val fold_rev : (key -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'b

fold_rev f m is the composition of f k e for each (k, e) in m applied in order of decreasing keys.

val iter : (key -> 'a -> unit) -> 'a t -> unit

iter f m calls f k e for each (k, e) in m in order of increasing keys.

val for_all : (key -> 'a -> bool) -> 'a t -> bool

for_all f m is true iff f k e is true for all bindings (k, e) of m.

val exists : (key -> 'a -> bool) -> 'a t -> bool

exists f m is true iff f k e for some binding (k, e) of m.

val map : ('a -> 'b) -> 'a t -> 'b t

map f m is the minimal map which for each (k, e) of m contains (k, f e).

val mapi : (key -> 'a -> 'b) -> 'a t -> 'b t

mapi f m is the minimal map which for each (k, e) of m contains (k, f k e).

val fmapi : (key -> 'a -> 'b option) -> 'a t -> 'b t

fmapi f m is the minimal map which contains (k, e) iff f k e' = Some e for some (k, e') in m.

val filter : (key -> 'a -> bool) -> 'a t -> 'a t

filter f m is the maximal submap of m such that f k e holds for each binding (k, e).

val compare : ('a -> 'b -> int) -> 'a t -> 'b t -> int

compare f is a total order over maps using f to compare elements.

val equal : ('a -> 'b -> bool) -> 'a t -> 'b t -> bool

equal f m0 m1 is true iff m0 and m1 have the same keys and f is true on the respective mappings for each key.

val merge : (key -> 'a option -> 'b option -> 'c option) -> 'a t -> 'b t -> 'c t

merge f m1 m2 is the map containing a binding (k, e) for each k bound in at least one of the maps, such that f (find k m1) (find k m2) = Some e.

val finter : (key -> 'a -> 'b -> 'c option) -> 'a t -> 'b t -> 'c t

finter f m1 m2 is the minimal map which for each shared key k of m1 and m2 contains (k, e) if f k m1 m2 = Some e for some e.

val funion : (key -> 'a -> 'a -> 'a option) -> 'a t -> 'a t -> 'a t

funion f m1 m2 is the minimal map which contains all bindings of finter f m1 m2 and all bindings of m1 and m2 whose key does not occur in the other map.

val fcompl : (key -> 'a -> 'b -> 'b option) -> 'a t -> 'b t -> 'b t

fcompl f m1 m2 is the minimal map which contains the bindings of finter f m1 m2 and the bindings of m2 with the key not in m1.

val fpatch : (key -> 'a -> 'b option -> 'b option) -> 'a t -> 'b t -> 'b t

fpatch f m1 m2 is the minimal map which contains the bindings of m2 having keys disjoint from m1, and which contains (k, e) iff (k, e') is in m1 and f k e' (find k m2) = Some e.

val split_union : (key -> 'a -> 'b -> 'c) -> 'a t -> 'b t -> 'a t * 'b t * 'c t

split_union mA mB is a triple (mA', mB', mC') where mA' and mB' are the respective bindings of mA and mB which have disjoint keys, and mC' has a binding (k, f k a b) for each pair of bindings (k, a) of mA and (k, b) of mB sharing k.

module Make_monadic : functor (Monad : Prime_sigs.Monad) -> S_monadic with type key := Key.t and type 'a t := 'a t and type 'a monad = 'a Monad.t