OLD.Qualmapval pp :
(Ppx_deriving_runtime.Format.formatter -> 'a -> Ppx_deriving_runtime.unit) ->
Ppx_deriving_runtime.Format.formatter ->
'a t ->
Ppx_deriving_runtime.unitval show :
(Ppx_deriving_runtime.Format.formatter -> 'a -> Ppx_deriving_runtime.unit) ->
'a t ->
Ppx_deriving_runtime.stringval empty : 'a tval find : Cobol_ptree.qualname -> 'a t -> 'afind qualname map returns the unique element e of map that can be qualified with qualname. Raises Not_found if the element is not unique, or does not exists in map.
val find_opt : Cobol_ptree.qualname -> 'a t -> 'a optionfind_opt qualname map returns Some elt if elt is the unique element of map that can be qualified by qualname. It returns None if there is no element or the uniqueness is not respected.
val find_all : Cobol_ptree.qualname -> 'a t -> (Cobol_ptree.qualname * 'a) listfind_all qualname map returns all the elements that can be qualified with qualname in map with their fully qualified name.
val find_full_qualname : Cobol_ptree.qualname -> 'a t -> Cobol_ptree.qualnamefind_full_qualname qualname map returns the full name of qualname if it is unique
val find_full_qualname_opt :
Cobol_ptree.qualname ->
'a t ->
Cobol_ptree.qualname optionfind_full_qualname_opt qualname map returns Some full_name with full_name being the fully qualified name of qualname if it exists, None otherwise
val add : Cobol_ptree.qualname -> 'a -> 'a t -> 'a tadd qualname value map returns map with value bound to the key qualname. qualname is assumed to be the fully qualified name of value.
val iter : (Cobol_ptree.qualname -> 'a -> unit) -> 'a t -> unititer f map iters over all the values of map.
val fold : (Cobol_ptree.qualname -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'bfold f map init folds over all the key values bindings of map