Process.Pimodule type PROCESS = sig ... endtype Resource.pi += | Process : ('t,
(module PROCESS
with type t = 't
and type tag = 'tag),
[> 'tag ty ])
Resource.pival process :
(module PROCESS with type t = 't and type tag = 'tag) ->
('t, 'tag ty) Resource.handlermodule type MGR = sig ... endtype Resource.pi += | Mgr : ('t, (module MGR with type t = 't and type tag = 'tag), [> 'tag mgr_ty ])
Resource.pival mgr :
(module MGR with type t = 't and type tag = 'tag) ->
('t, 'tag mgr_ty) Resource.handler