module Addr : sig ... endval equal : t -> t -> boolval compare : t -> t -> intval pretty : unit -> t -> Printable.Pretty.docval printXml : 'a BatInnerIO.output -> t -> unitval name : unit -> stringval to_yojson : t -> Yojson.Safe.tval arbitrary : unit -> t QCheck.arbitraryval pretty_diff : unit -> (t * t) -> 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 to_seq : t -> elt Stdlib.Seq.tval of_list : elt list -> tval is_not_null : t -> boolval may_be_null : t -> boolval may_be_unknown : t -> boolval is_definite : t -> boolval is_element : Addr.t -> t -> boolval of_var : GoblintCil.varinfo -> tval to_var_may : t -> GoblintCil.varinfo listval to_var_must : t -> GoblintCil.varinfo listval to_bool : t -> bool optionval type_of : t -> GoblintCil.typval of_string : string -> tval to_string : t -> string listval to_string_length : t -> ID.tval string_comparison : t -> t -> int option -> ID.tval string_writing_defined : t -> bool