Zig 0.17.0-dev (Split by item)

This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.

uintLessThanBiased

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

Random.uintLessThanBiased
pub fn uintLessThanBiased(r: Random, comptime T: type, less_than: T) T

File

lib/std/Random.zig:145

Code

pub fn uintLessThanBiased(r: Random, comptime T: type, less_than: T) T {
    comptime assert(@typeInfo(T).int.signedness == .unsigned);
    assert(0 < less_than);
    return limitRangeBiased(T, r.int(T), less_than);
}