Function uintAtMostBiased [src]
Constant-time implementation off uintAtMost.
The results of this function may be biased.
Prototype
pub fn uintAtMostBiased(r: Random, comptime T: type, at_most: T) T
Parameters
r: Random
T: type
at_most: T
Source
pub fn uintAtMostBiased(r: Random, comptime T: type, at_most: T) T {
assert(@typeInfo(T).int.signedness == .unsigned);
if (at_most == maxInt(T)) {
// have the full range
return r.int(T);
}
return r.uintLessThanBiased(T, at_most + 1);
}