Module InferModules__LithoDomain
module LocalAccessPath : sig ... endAccess path + its parent procedure
module MethodCall : sig ... endCalled procedure + its receiver
module CallSet : module type of sig ... endinclude module type of sig ... end
type key= LocalAccessPath.ttype value= CallSet.ttype t= InferModules__AbstractDomain.Map(LocalAccessPath)(CallSet).t
val empty : tval is_empty : t -> boolval mem : key -> t -> boolval add : key -> value -> t -> tval update : key -> (value option -> value option) -> t -> tval singleton : key -> value -> tval remove : key -> t -> tval merge : (key -> value option -> value option -> value option) -> t -> t -> tval union : (key -> value -> value -> value option) -> t -> t -> tval compare : (value -> value -> int) -> t -> t -> intval equal : (value -> value -> bool) -> t -> t -> boolval iter : (key -> value -> unit) -> t -> unitval fold : (key -> value -> 'a -> 'a) -> t -> 'a -> 'aval for_all : (key -> value -> bool) -> t -> boolval exists : (key -> value -> bool) -> t -> boolval filter : (key -> value -> bool) -> t -> tval partition : (key -> value -> bool) -> t -> t * tval cardinal : t -> intval bindings : t -> (key * value) listval min_binding : t -> key * valueval min_binding_opt : t -> (key * value) optionval max_binding : t -> key * valueval max_binding_opt : t -> (key * value) optionval choose : t -> key * valueval choose_opt : t -> (key * value) optionval split : key -> t -> t * value option * tval find : key -> t -> valueval find_opt : key -> t -> value optionval find_first : (key -> bool) -> t -> key * valueval find_first_opt : (key -> bool) -> t -> (key * value) optionval find_last : (key -> bool) -> t -> key * valueval find_last_opt : (key -> bool) -> t -> (key * value) optionval map : (value -> value) -> t -> tval mapi : (key -> value -> value) -> t -> tval is_singleton_or_more : t -> (key * value) InferStdlib.IContainer.singleton_or_moreval pp_key : InferStdlib.PrettyPrintable.F.formatter -> key -> unitval pp : InferStdlib.PrettyPrintable.F.formatter -> t -> unitval (<=) : lhs:t -> rhs:t -> boolval join : t -> t -> tval widen : prev:t -> next:t -> num_iters:int -> tval bottom : tval is_bottom : t -> bool
val substitute : f_sub:(LocalAccessPath.t -> LocalAccessPath.t option) -> t -> tSubstitute each access path in the domain using
f_sub. Iff_subreturns None, the original access path is retained; otherwise, the new one is used
val iter_call_chains : f:(InferIR.AccessPath.t -> InferIR.Typ.Procname.t list -> unit) -> t -> unitApply
fto each maximal call chain encoded int