@frozen
public struct UniformIntegerDistribution<T> : RandomDistribution where T : FixedWidthInteger
beyan
public let lowerBound: T
beyan
public let upperBound: T
beyan
public init(lowerBound: T = T.self.min, upperBound: T = T.self.max)
beyan
public func next<G>(using rng: inout G) -> T where G : RandomNumberGenerator