module Array: sig .. end
sig
end
module type S = sig .. end
module Byte: S with type elt = char and type t = Bytes.t
S
with type elt = char and type t = Bytes.t
char
module Make (Elt : sig type t end) : S with type elt = Elt.t and type t = Elt.t array
(
Elt
:
type t
)
with type elt = Elt.t and type t = Elt.t array