Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 1.04 KB

README.md

File metadata and controls

22 lines (15 loc) · 1.04 KB

Fastrand

License GoDev Reference Go Report Card

Package fastrand provides quickly generated pseudo-random numbers with no repeatability guarantees on the stream of values.

It uses internals of the go runtime to generate pseudo-random numbers without requiring mutexes or syncronization. As a result, it's much faster than math/rand and scales very well to many cores. It doesn't allow you to provide your own seed or generate a stable sequence of values.