Frama-C API - S
include Datatype.S with type t = rangemap
include Datatype.S_no_copy with type t = rangemap
val packed_descr : Structural_descr.pack
Packed version of the descriptor.
val reprs : t list
List of representants of the descriptor.
val hash : t -> int
Hash function: same spec than Hashtbl.hash
.
val pretty : Stdlib.Format.formatter -> t -> unit
Pretty print each value in an user-friendly way.
val mem_project : (Project_skeleton.t -> bool) -> t -> bool
mem_project f x
must return true
iff there is a value p
of type Project.t
in x
such that f p
returns true
.
val empty : t
The empty map.
val is_empty : t -> bool
Test whether a map is empty or not.
add x y m
returns a map containing the same bindings as m
, plus a binding of x
to y
. If x
was already bound in m
, its previous binding disappears.
singleton x y
returns the one-element map that contains a binding y
for x
.
find x m
returns the current binding of x
in m
, or raises Not_found
if no such binding exists.
remove x m
returns a map containing the same bindings as m
, except for x
which is unbound in the returned map.
iter f m
applies f
to all bindings in map m
. f
receives the key as first argument, and the associated value as second argument. The bindings are passed to f
in increasing order with respect to the ordering over the type of the keys. Only current bindings are presented to f
: bindings hidden by more recent bindings are not passed to f
.
map f m
returns a map with same domain as m
, where the associated value a
of all bindings of m
has been replaced by the result of the application of f
to a
. The bindings are passed to f
in increasing order with respect to the ordering over the type of the keys.
Same as Map.S.map
, but the function receives as arguments both the key and the associated value for each binding of the map.
Same as Map.S.mapi
, but the function also returns a new key. the modification applied on the keys must be compatible with the order on the keys.
fold f m a
computes (f kN dN ... (f k1 d1 a)...)
, where k1 ... kN
are the keys of all bindings in m
(in increasing order), and d1 ... dN
are the associated data.
for_all p m
checks if all the bindings of the map satisfy the predicate p
.
exists p m
checks if at least one binding of the map satisfy the predicate p
.
filter p m
returns the map with all the bindings in m
that satisfy predicate p
.
partition p m
returns a pair of maps (m1, m2)
, where m1
contains all the bindings of s
that satisfy the predicate p
, and m2
is the map with all the bindings of s
that do not satisfy p
.
val cardinal : t -> int
Return the number of bindings of a map.
Return the list of all bindings of the given map. The returned list is sorted in increasing order with respect to the ordering on keys
Return the smallest binding of the given map (with respect to the Ord.compare
ordering), or raise Not_found
if the map is empty.
Same as Map.S.min_binding
, but returns the largest binding of the given map.
Return one binding of the given map, or raise Not_found
if the map is empty. Which binding is chosen is unspecified, but equal bindings will be chosen for equal maps.
merge f m1 m2
computes a map whose keys is a subset of keys of m1
and of m2
. The presence of each such binding, and the corresponding value, is determined with the function f
.
for_all2 f m1 m2
returns true if and only if f k v1 v2
holds for each k
present in either m1
and m2
, v_i
being Some (find k m_i)
if k
is in m_i
, and None
otherwise (for i=1
or i=2
)
exists2 f m1 m2
returns true if and only there exists k
present in m1
or m2
such that f k v1 v2
holds, v_i
being Some (find k m_i)
if k
is in m_i
, and None
otherwise (for i=1
or i=2
)
iter2 f m1 m2
computes f k v1 v2
for each k
present in either m1
or m2
(the k
being presented in ascending order), v_i
being Some (find k m_i)
if k
is in m_i
, and None
otherwise (for i=1
or i=2
)
fold2 f m1 m2 v
computes (f k_N v1_N v2_N... (f k_1 v1_1 v2_1 a)...)
where k_1 ... k_N
are all the keys of all the bindings in either m1
or m2
(in increasing order), vi_j
being Some (find k_j m_i)
if k_j
is in m_i
, and None
otherwise (for i=1
or i=2
)