Module Mina_wire_types.Utils

Various useful module types and functors

module type Single_sig = sig ... end

The signature of a module

module Signature (Types : Single_sig) : sig ... end

Signature maker provided by implementation module

Types of modules with a single type t of different arities

module type S0 = sig ... end
module type S1 = sig ... end
module type S2 = sig ... end
module type S3 = sig ... end
module type S4 = sig ... end
module type S9 = sig ... end

Same, for versioned types

module type V1S0 = sig ... end
module type V1S1 = sig ... end
module type V1S2 = sig ... end
module type V1S3 = sig ... end
module type V1S4 = sig ... end
module type V1S9 = sig ... end
module type V2S0 = sig ... end
module type V2S1 = sig ... end
module type V2S2 = sig ... end
module type V2S3 = sig ... end
module type V2S9 = sig ... end