SwiftRandom icon indicating copy to clipboard operation
SwiftRandom copied to clipboard

A tiny generator of random data for swift

Results 6 SwiftRandom issues
Sort by recently updated
recently updated
newest added

Add the ability to generate a random String that contains alphanumeric characters. Users can also specify how many characters should be in the String.

i have perfect framework. but when i try to swift build, it stuck on SwiftRandom.git Terminal Output: $ swift build Updating https://github.com/PerfectlySoft/Perfect-COpenSSL.git Updating https://github.com/PerfectlySoft/Perfect-Crypto.git Updating https://github.com/PerfectlySoft/Perfect-HTTPServer.git Updating https://github.com/PerfectlySoft/PerfectLib.git Updating https://github.com/PerfectlySoft/Perfect-Thread.git...

I've been working on different technologies lately. Keeping up with Swift's fast iterations takes a lot of my time. Let me know if you are interested in reviewing PRs, managing...

Upper bond cannot be less the lower bond. Added unit tests as well.

I don't like Install Manually.

Suggest removing the `random` prefix to all the asMethods. So class level methods like: ``` Randoms.randomInt(10,20) Randoms.randomString(ofLength: 16) Randoms.randomFakeName() ``` become shorter to: ``` Randoms.int(10,20) Randoms.string(ofLength: 16) Randoms.fakeName() ```