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.

uintAtMostBiased

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

Random.uintAtMostBiased
pub fn uintAtMostBiased(r: Random, comptime T: type, at_most: T) T

File

lib/std/Random.zig:190

Code

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);
}