Function intRangeLessThanBiased [src]

Constant-time implementation off intRangeLessThan. The results of this function may be biased.

Prototype

pub fn intRangeLessThanBiased(r: Random, comptime T: type, at_least: T, less_than: T) T

Parameters

r: RandomT: typeat_least: Tless_than: T

Source

pub fn intRangeLessThanBiased(r: Random, comptime T: type, at_least: T, less_than: T) T { assert(at_least < less_than); 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(less_than); const result = lo +% r.uintLessThanBiased(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.uintLessThanBiased(T, less_than - at_least); } }