unit_threaded.randomized.gen

Members

Mixin templates

GenNumeric
mixin template GenNumeric(T, T low, T high)

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

Structs

Gen
struct Gen(T, T low = minimum!T, T high = maximum!T)

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

Gen
struct Gen(T, size_t low = 0, size_t high = 32)

A Gen type that generates unicode strings with a number of charatacters that is between template parameter low and high.

GenASCIIString
struct GenASCIIString(size_t low = 1, size_t high = 32)

DITTO This random strings only consisting of ASCII character

Meta