Function intRangeAtMost [src]
Returns an evenly distributed random integer at_least <= i <= at_most.
See uintLessThan, which this function uses in most cases,
for commentary on the runtime of this function.
Prototype
pub fn intRangeAtMost(r: Random, comptime T: type, at_least: T, at_most: T) T
Parameters
r: Random
T: type
at_least: T
at_most: T
Source
pub fn intRangeAtMost(r: Random, comptime T: type, at_least: T, at_most: T) T {
assert(at_least <= at_most);
const info = @typeInfo(T).int;
if (info.signedness == .signed) {
// Two's complement makes this math pretty easy.
const UnsignedT = std.meta.Int(.unsigned, info.bits);
const lo: UnsignedT = @bitCast(at_least);
const hi: UnsignedT = @bitCast(at_most);
const result = lo +% r.uintAtMost(UnsignedT, hi -% lo);
return @bitCast(result);
} else {
// The signed implementation would work fine, but we can use stricter arithmetic operators here.
return at_least + r.uintAtMost(T, at_most - at_least);
}
}