Gen

A Gen type that generates numeric values between the values of the template parameter low and high.

  1. struct Gen(T, T low = minimum!T, T high = maximum!T)
    struct Gen (
    T
    T low = minimum!T
    T high = maximum!T
    ) if (
    from!"std.traits".isIntegral!T
    ) {}
  2. struct Gen(T, size_t low = 0, size_t high = 32)

Meta