Module AddressDomain.AddressSet
Parameters
Signature
module Addr : sig ... endinclude sig ... end
val compare : t -> t -> intval name : unit -> stringval arbitrary : unit -> t QCheck.arbitraryval pretty_diff : unit -> (t * t) -> Goblint_lib__Lattice.Pretty.docval mem : elt -> t -> boolval remove : elt -> t -> tval subset : t -> t -> boolval disjoint : t -> t -> boolval iter : (elt -> unit) -> t -> unitval fold : (elt -> 'a -> 'a) -> t -> 'a -> 'aval for_all : (elt -> bool) -> t -> boolval exists : (elt -> bool) -> t -> boolval filter : (elt -> bool) -> t -> tval partition : (elt -> bool) -> t -> t * tval elements : t -> elt listval of_list : elt list -> tval equal : t -> t -> boolval may_be_unknown : t -> boolval is_element : Addr.t -> t -> boolval is_not_null : t -> boolval may_be_null : t -> boolval to_bool : t -> bool optionval has_unknown : t -> boolval get_type : t -> GoblintCil.typval is_definite : t -> boolval from_string : string -> tval to_string : t -> string listinclude sig ... end
val pretty : unit -> t -> Goblint_lib__SetDomain.Pretty.docval merge : (t -> t -> t) -> (t -> t -> t) -> t -> t -> t