module Svg_sigs:sig
..end
module type T =sig
..end
module type NoWrap =T
with module Xml.W = Xml_wrap.NoWrap
Svg_sigs.T
, but without wrapping.
module Make(
Xml
:
Xml_sigs.T
)
:sig
..end
Svg_f.Make
.
module type Wrapped_functions =sig
..end
Svg_f.Make_with_wrapped_functions
.