Function enumValue [src]
Returns a random value from an enum, evenly distributed.
Note that this will not yield consistent results across all targets
due to dependence on the representation of usize as an index.
See enumValueWithIndex for further commentary.
Prototype
pub inline fn enumValue(r: Random, comptime EnumType: type) EnumType
Parameters
r: Random
EnumType: type
Source
pub inline fn enumValue(r: Random, comptime EnumType: type) EnumType {
return r.enumValueWithIndex(EnumType, usize);
}