Module Checker__Location.PathMap
the PathMap submodule provides special maps with paths as keys
type key= pathtype 'a tthe abstract type for the map holding values of type
'a. Multiple values are allowed to associate with the same path
val empty : 'a tan empty map
val merge : ?equal:('a -> 'a -> bool) -> 'a t -> 'a t -> 'a tmerge ?(equal=Stdlib.(=)) t1 t2mergest1andt2, eliminating duplicated entries. Two entriespath1 => value1andpath2 => value2are considered identical ifpath1 = path2andequal value1 value2.Duplications in
t1ort2are not eliminated.