module Signed:sig..end
module type S =sig..end
module Int:Swith type t = int
module Int32:Swith type t = int32
module Int64:Swith type t = int64
module SInt:S
module Long:S
module LLong:S
typesint =SInt.t
typelong =Long.t
typellong =LLong.t
val of_byte_size : int -> (module Signed.S)of_byte_size b is a module of type S that implements a signed type
with b bytes.
Raise Invalid_argument if no suitable type is available.