functor (I : INPUT) ->
sig
module SMap :
sig
type key = My_std.String.t
type 'a t = 'a Map.Make(My_std.String).t
val empty : 'a t
val is_empty : 'a t -> bool
val mem : key -> 'a t -> bool
val add : key -> 'a -> 'a t -> 'a t
val singleton : key -> 'a -> 'a t
val remove : key -> 'a t -> 'a t
val merge :
(key -> 'a option -> 'b option -> 'c option) ->
'a t -> 'b t -> 'c t
val compare : ('a -> 'a -> int) -> 'a t -> 'a t -> int
val equal : ('a -> 'a -> bool) -> 'a t -> 'a t -> bool
val iter : (key -> 'a -> unit) -> 'a t -> unit
val fold : (key -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'b
val for_all : (key -> 'a -> bool) -> 'a t -> bool
val exists : (key -> 'a -> bool) -> 'a t -> bool
val filter : (key -> 'a -> bool) -> 'a t -> 'a t
val partition : (key -> 'a -> bool) -> 'a t -> 'a t * 'a t
val cardinal : 'a t -> int
val bindings : 'a t -> (key * 'a) list
val min_binding : 'a t -> key * 'a
val max_binding : 'a t -> key * 'a
val choose : 'a t -> key * 'a
val split : key -> 'a t -> 'a t * 'a option * 'a t
val find : key -> 'a t -> 'a
val map : ('a -> 'b) -> 'a t -> 'b t
val mapi : (key -> 'a -> 'b) -> 'a t -> 'b t
end
module Resources :
sig
type elt = Pathname.t
type t = Resource.Resources.t
val empty : t
val is_empty : t -> bool
val mem : elt -> t -> bool
val add : elt -> t -> t
val singleton : elt -> t
val remove : elt -> t -> t
val union : t -> t -> t
val inter : t -> t -> t
val diff : t -> t -> t
val compare : t -> t -> int
val equal : t -> t -> bool
val subset : t -> t -> bool
val iter : (elt -> unit) -> t -> unit
val fold : (elt -> 'a -> 'a) -> t -> 'a -> 'a
val for_all : (elt -> bool) -> t -> bool
val exists : (elt -> bool) -> t -> bool
val filter : (elt -> bool) -> t -> t
val partition : (elt -> bool) -> t -> t * t
val cardinal : t -> int
val elements : t -> elt list
val min_elt : t -> elt
val max_elt : t -> elt
val choose : t -> elt
val split : elt -> t -> t * bool * t
val find : (elt -> bool) -> t -> elt
val map : (elt -> elt) -> t -> t
val of_list : elt list -> t
val print : Format.formatter -> t -> unit
end
module Utils :
sig
val add :
Ocaml_dependencies.Make.SMap.key ->
'a ->
'a Ocaml_dependencies.Make.SMap.t ->
'a Ocaml_dependencies.Make.SMap.t
val empty : 'a Ocaml_dependencies.Make.SMap.t
val find_all_set :
Ocaml_dependencies.Make.SMap.key ->
Ocaml_dependencies.Make.Resources.t Ocaml_dependencies.Make.SMap.t ->
Ocaml_dependencies.Make.Resources.t
val smap_add_set :
Ocaml_dependencies.Make.SMap.key ->
Ocaml_dependencies.Make.Resources.elt ->
Ocaml_dependencies.Make.Resources.t Ocaml_dependencies.Make.SMap.t ->
Ocaml_dependencies.Make.Resources.t Ocaml_dependencies.Make.SMap.t
val print_smap :
(Format.formatter -> 'a -> unit) ->
Format.formatter -> 'a Ocaml_dependencies.Make.SMap.t -> unit
val print_smap_list :
Format.formatter ->
string list Ocaml_dependencies.Make.SMap.t -> unit
val print_smap_set :
Format.formatter ->
Ocaml_dependencies.Make.Resources.t Ocaml_dependencies.Make.SMap.t ->
unit
val print_lazy : ('a -> 'b -> 'c) -> 'a -> 'b Lazy.t -> 'c
val find_all_list :
Ocaml_dependencies.Make.SMap.key ->
'a list Ocaml_dependencies.Make.SMap.t -> 'a list
val find_all_rec :
Ocaml_dependencies.Make.Resources.elt list ->
Ocaml_dependencies.Make.Resources.t Ocaml_dependencies.Make.SMap.t ->
Ocaml_dependencies.Make.Resources.t
val mkindex :
(('a ->
Ocaml_dependencies.Make.SMap.key list ->
'a list Ocaml_dependencies.Make.SMap.t ->
'a list Ocaml_dependencies.Make.SMap.t) ->
'b Ocaml_dependencies.Make.SMap.t -> 'c) ->
('a -> bool) -> 'c
end
val caml_transitive_closure :
?caml_obj_ext:string ->
?caml_lib_ext:string ->
?pack_mode:bool ->
?used_libraries:Pathname.t list ->
?hidden_packages:Ocaml_dependencies.Make.Resources.elt list ->
Pathname.t list -> Pathname.t list
end