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 let package = 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 install
and open the.xcworkspace
file 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 update
and 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.