unit_threaded.randomized.gen

Undocumented in source.

Members

Mixin templates

GenNumeric
mixintemplate 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, T low = 0, T high = 6.022E23)
Undocumented in source.
Gen
struct Gen(T, size_t low = 0, size_t high = 32)

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

Gen
struct Gen(T)
Undocumented in source.
Gen
struct Gen(T, T low = minimum!T, T high = maximum!T)
Undocumented in source.
Gen
struct Gen(T, size_t low = 1, size_t high = 1024)
Undocumented in source.
Gen
struct Gen(T)
Undocumented in source.
GenASCIIString
struct GenASCIIString(size_t low = 1, size_t high = 32)

DITTO This random strings only consisting of ASCII character

Templates

isGen
template isGen(T)
Undocumented in source.

Meta