@frozen
public struct NormalDistribution<T: BinaryFloatingPoint>: RandomDistribution
where T.RawSignificand: FixedWidthInteger
beyan
public let mean: T
beyan
public let standardDeviation: T
beyan
public init(mean: T = 0, standardDeviation: T = 1)
beyan
public func next<G>(using rng: inout G) -> T where G : RandomNumberGenerator