Module Benchmarks_proto.Benchmark

type group = Benchmark_base.group =
  1. | Standalone
  2. | Group of string
  3. | Generic
type purpose = Benchmark_base.purpose =
  1. | Other_purpose of string
  2. | Generate_code of string

The module type of benchmarks, a simplification of Benchmark.S used by registration_simple below.

module type S = sig ... end
type t = (module S)