目录
目录README.md

RNGExtension

Swift exntension for RandomNumberGenerator.

Description

Any RandomNumberGenerator gets uniform: Uniform and normal: Normal. Uniform and Normal have several next functions.

Example

// Get random float number from uniform distribution [10, 20)
let float: Float = Random.default.uniform.next(in: 10..<20)
/// Get random double number from normal distribution N(1, 3^2)
let double: Double = Random.default.normal.next(mu: 1, sigma: 3)

Installation

Add the following setting to your Package.swift.

let package = Package(
    name: "Project",
    dependencies: [
        ...
        .package(url: "https://github.com/t-ae/rng-extension.git", from: "1.0.0"),
    ],
    targets: [
      .target(name: "Project", dependencies: ["RNGExtension", ... ])
    ]
)
关于
50.0 KB
邀请码
    Gitlink(确实开源)
  • 加入我们
  • 官网邮箱:gitlink@ccf.org.cn
  • QQ群
  • QQ群
  • 公众号
  • 公众号

©Copyright 2023 CCF 开源发展委员会
Powered by Trustie& IntelliDE 京ICP备13000930号