RandomKitBigInt allows for random generation of arbitrary-precision integers in Swift. This is a set of extensions to BigInt that provide functionality of RandomKit.
- Platforms:
- macOS 10.9+
- iOS 8.0+
- watchOS 2.0+
- tvOS 9.0+
- Linux
- Xcode 8.0
- Swift 3.0
The Swift Package Manager is a decentralized dependency manager for Swift.
Add the project to your
Package.swift.import PackageDescription letpackage=Package( name:"MyAwesomeProject", dependencies:[.Package(url:"https://github.com/nvzqz/RandomKitBigInt.git", majorVersion:1)])
Import the RandomKitBigInt module.
import RandomKitBigInt
CocoaPods is a centralized dependency manager for Objective-C and Swift. Go here to learn more.
Add the project to your Podfile.
use_frameworks!pod'RandomKitBigInt','~> 1.1.0'
If you want to be on the bleeding edge, replace the last line with:
pod'RandomKitBigInt',:git=>'https://github.com/nvzqz/RandomKitBigInt.git'
Run
pod installand open the.xcworkspacefile to launch Xcode.Import the RandomKitBigInt framework.
import RandomKitBigInt
Carthage is a decentralized dependency manager for Objective-C and Swift.
Add the project to your Cartfile.
github "nvzqz/RandomKitBigInt"Run
carthage updateand follow the additional steps in order to add RandomKitBigInt to your project.Import the RandomKitBigInt framework.
import RandomKitBigInt
RandomKit is released under the MIT License.
