v8.run/go/exp@v0.0.26-0.20230226010534-afcdbd3f782d/fastrand/alg/alg.go (about) 1 package alg 2 3 import ( 4 "v8.run/go/exp/fastrand/alg/splitmix64" 5 "v8.run/go/exp/fastrand/alg/xoshiro256plusplus" 6 ) 7 8 func Splitmix64() uint64 { 9 return splitmix64.Next() 10 } 11 12 func XoShiro256PlusPlus() uint64 { 13 return xoshiro256plusplus.Next() 14 }