module M:Hptmap.Make(K)(V)(Comp)(sigval v :(K.t * V.t) list listend)(sigval l :State.t listend)
type key
type v
type 'a shape
type prefix
include Datatype.S_with_collections
val id : t -> intval self : State.t
val empty : tval is_empty : t -> boolis_empty m returns true if and only if the map m defines no
bindings at all.val add : key -> v -> t -> tadd k d m returns a map whose bindings are all bindings in m, plus
a binding of the key k to the datum d. If a binding already exists
for k, it is overridden.val find : key -> t -> v
val find_check_missing : key -> t -> vfind key m and find_check_missing key m return the value
bound to key in m, or raise Not_found is key is unbound.
find is optimised for the case where key is bound in m, whereas
find_check_missing is more efficient for the cases where m
is big and key is missing.val find_key : key -> t -> keyKey.equal.val remove : key -> t -> tremove k m returns the map m deprived from any binding involving
k.val mem : key -> t -> boolmem k m returns true if k is bound in m, and false otherwise.val iter : (key -> v -> unit) -> t -> unititer f m applies f to all bindings of the map m.val map : (v -> v) -> t -> tmap f m returns the map obtained by composing the map m with the
function f; that is, the map $k\mapsto f(m(k))$.val map' : (key -> v -> v option) -> t -> tmap, except if f k v returns None. In this case, k is not
bound in the resulting map.val fold : (key -> v -> 'b -> 'b) -> t -> 'b -> 'bfold f m seed invokes f k d accu, in turn, for each binding from
key k to datum d in the map m. Keys are presented to f in
increasing order according to the map's ordering. The initial value of
accu is seed; then, at each new call, its value is the value
returned by the previous invocation of f. The value returned by
fold is the final value of accu.val fold_rev : (key -> v -> 'b -> 'b) -> t -> 'b -> 'bfold_rev performs exactly the same job as fold, but presents keys
to f in the opposite order.val for_all : (key -> v -> bool) -> t -> boolfor_all p m returns true if all the bindings of the map m satisfy
the predicate p.val exists : (key -> v -> bool) -> t -> boolfor_all p m returns true if at least one binding of the map m satisfies
the predicate p.type empty_action =
| |
Neutral |
| |
Absorbing |
| |
Traversing of |
val merge : cache:Hptmap_sig.cache_type ->
symmetric:bool ->
idempotent:bool ->
decide_both:(key ->
v -> v -> v option) ->
decide_left:empty_action ->
decide_right:empty_action -> t -> t -> tsymmetric holds, the function must verify merge x y = merge y x.
If idempotent holds, the function must verify merge x x = x.
For each key k present in both trees, and bound to v1 and v2 in the
left and the right tree respectively, decide_both k v1 v2 is called. If
the decide function returns None, the key will not be in the resulting
map; otherwise, the new value computed will be bound to k.
The decide_left action is performed to the left subtree t when a right
subtree is empty (and conversely for the decide_right action when a left
subtree is empty):t unchanged;f to each binding of the remaining
subtree t (see map').
The results of the function may be cached, depending on cache. If a cache
is used, then the merge functions must be pure.val generic_join : cache:Hptmap_sig.cache_type ->
symmetric:bool ->
idempotent:bool ->
decide:(key ->
v option -> v option -> v) ->
t -> t -> tdecide function. If symmetric
holds, the function must verify decide key v1 v2 = decide key v2 v1. If
idempotent holds, the function must verify
decide k (Some x) (Some x) = x.val join : cache:Hptmap_sig.cache_type ->
symmetric:bool ->
idempotent:bool ->
decide:(key ->
v -> v -> v) ->
t -> t -> tgeneric_merge, but we assume that
decide key None (Some v) = decide key (Some v) None = v holds.val inter : cache:Hptmap_sig.cache_type ->
symmetric:bool ->
idempotent:bool ->
decide:(key ->
v -> v -> v option) ->
t -> t -> tdecide function. If the
decide function returns None, the key will not be in the resulting
map. Keys present in only one map are similarly unmapped in the result.val inter_with_shape : 'a shape -> t -> tinter_with_shape s m keeps only the elements of m that are also
bound in the map s. No caching is used, but this function is more
efficient than successive calls to Hptmap_sig.S.remove or Hptmap_sig.S.add to build the
resulting map.type decide_fast =
| |
Done |
|||
| |
Unknown |
(* |
Shortcut for functions that decide whether a predicate holds on a tree.
Done means that the function returns its default value, which is
usually unit. Unknown means that the evaluation must continue in the
subtrees. | *) |
val generic_predicate : exn ->
cache:string * 'a ->
decide_fast:(t -> t -> decide_fast) ->
decide_fst:(key -> v -> unit) ->
decide_snd:(key -> v -> unit) ->
decide_both:(v -> v -> unit) -> t -> t -> unitgeneric_is_included e (cache_name, cache_size) ~decide_fast
~decide_fst ~decide_snd ~decide_both t1 t2 decides whether some
relation holds between t1 and t2. All decide functions must raise
e when the relation does not hold, and do nothing otherwise.
decide_fst (resp. decide_snd) is called when one key is present only
in t1 (resp. t2).
decide_both is called when a key is present in both trees.
decide_fast is called on entire keys. As its name implies, it must be
fast; in doubt, returning Unknown is always correct. Raising e means
that the relation does not hold. Returning Done means that the relation
holds.
The computation of this relation cached. cache_name is used to identify
the cache when debugging. cache_size is currently unused.
type predicate_type =
| |
ExistentialPredicate |
| |
UniversalPredicate |
||) or universal (&&) predicates.type predicate_result =
| |
PTrue |
| |
PFalse |
| |
PUnknown |
PUnknown indicates that the result
is uncertain, and that the more aggressive analysis should be used.val binary_predicate : Hptmap_sig.cache_type ->
predicate_type ->
decide_fast:(t -> t -> predicate_result) ->
decide_fst:(key -> v -> bool) ->
decide_snd:(key -> v -> bool) ->
decide_both:(key -> v -> v -> bool) ->
t -> t -> boolgeneric_predicate but with a different signature.
All decisin functions return a boolean that are combined differently
depending on whether the predicate is existential or universal.val generic_symmetric_predicate : exn ->
decide_fast:(t -> t -> decide_fast) ->
decide_one:(key -> v -> unit) ->
decide_both:(v -> v -> unit) -> t -> t -> unitgeneric_predicate, but for a symmetric relation. decide_fst
and decide_snd are thus merged into decide_one.val symmetric_binary_predicate : Hptmap_sig.cache_type ->
predicate_type ->
decide_fast:(t -> t -> predicate_result) ->
decide_one:(key -> v -> bool) ->
decide_both:(key -> v -> v -> bool) ->
t -> t -> boolbinary_predicate, but for a symmetric relation. decide_fst
and decide_snd are thus merged into decide_one.val decide_fast_inclusion : t -> t -> predicate_resultdecide_fast argument of binary_predicate,
when testing for inclusion of the first map into the second. If the two
arguments are equal, or the first one is empty, the relation holds.val decide_fast_intersection : t -> t -> predicate_resultdecide_fast argument of
symmetric_binary_predicate when testing for a non-empty intersection
between two maps. If one map is empty, the intersection is empty.
Otherwise, if the two maps are equal, the intersection is non-empty.val cached_fold : cache_name:string ->
temporary:bool ->
f:(key -> v -> 'b) ->
joiner:('b -> 'b -> 'b) -> empty:'b -> t -> 'b
val cached_map : cache:string * int ->
temporary:bool ->
f:(key -> v -> v) -> t -> t
val singleton : key -> v -> tsingleton k d returns a map whose only binding is from k to d.val is_singleton : t -> (key * v) optionis_singleton m returns Some (k, d) if m is a singleton map
that maps k to d. Otherwise, it returns None.val on_singleton : (key -> v -> bool) -> t -> boolon_singleton f m returns f k d if m is a singleton map
that maps k to d. Otherwise, it returns false.val cardinal : t -> intcardinal m returns m's cardinal, that is, the number of keys it
binds, or, in other words, its domain's cardinal.val min_binding : t -> key * v
val max_binding : t -> key * v
val split : key -> t -> t * v option * t
val compositional_bool : t -> boolCompositional_bool argument of the functor.val clear_caches : unit -> unitval from_shape : (key -> 'a -> v) -> 'a shape -> tHptmap_sig.S.add the elements
of the other mapval shape : t -> v shapeHptmap_sig.S.inter_with_shape
and Hptmap_sig.S.from_shapeval fold2_join_heterogeneous : cache:Hptmap_sig.cache_type ->
empty_left:('a shape -> 'b) ->
empty_right:(t -> 'b) ->
both:(key -> v -> 'a -> 'b) ->
join:('b -> 'b -> 'b) -> empty:'b -> t -> 'a shape -> 'bfold2_join_heterogeneous ~cache ~empty_left ~empty_right ~both
~join ~empty m1 m2 iterates simultaneously on m1 and m2. If a subtree
t is present in m1 but not in m2 (resp. in m2 but not in m1),
empty_right t (resp. empty_left t) is called. If a key k is present
in both trees, and bound to v1 and v2 respectively, both k v1 v2 is
called. If both trees are empty, empty is returned. The values of type
'b returned by the auxiliary functions are merged using join, which is
called in an unspecified order. The results of the function may be cached,
depending on cache.