module Bucket: Bucket
Bucket
module type Contents = sig .. end
sig
end
module type S = sig .. end
module Make (C : Contents) : sig .. end
(
C
:
Contents
)
module Int: Make(Int)
Make
Int
module Int64: Make(Int64)
Int64
module Float: Make(Float)
Float