Function uintAtMost [src]

Returns an evenly distributed random unsigned integer 0 <= i <= at_most. See uintLessThan, which this function uses in most cases, for commentary on the runtime of this function.

Prototype

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

Parameters

r: RandomT: typeat_most: T

Source

pub fn uintAtMost(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.uintLessThan(T, at_most + 1); }