21/01
2017
Pseudo random generator library
I needed pseudo generator which for given seed return stil same values., (*1)
TODO: Describe the installation process, (*2)
Create new instance of generator, (*3)
use AsunaY\XorShift; // As seed you can use any integer number. $xs = new XorShift($seed);
Generate random number, (*4)
$xs->getRand();
or you can set max and min value to get random number from, (*5)
$xs->getRand(15,50);
git checkout -b my-new-feature
git commit -am 'Add some feature'
git push origin my-new-feature
TODO: Write history, (*6)
Charlotta, (*7)
MIT, (*8)