module Service_graph: sig .. end
sig
end
module Make: functor (G : sigtype t module V: sig .. endval iter_vertex : (V.t -> unit) -> t -> unitval callees : t -> V.t -> V.t listval callers : t -> V.t -> V.t listval name : stringend) -> sig .. end
functor (
G
:
type t
module V: sig .. end
val iter_vertex : (V.t -> unit) -> t -> unit
(V.t -> unit) -> t -> unit
val callees : t -> V.t -> V.t list
t -> V.t -> V.t list
val callers : t -> V.t -> V.t list
val name : string
string
) ->