v8.run/go/exp@v0.0.26-0.20230226010534-afcdbd3f782d/fastrand/alg/xoshiro256plusplus/xoshiro256plusplus_test.go (about) 1 package xoshiro256plusplus 2 3 import ( 4 "testing" 5 ) 6 7 func BenchmarkXoShiro256PlusPlus(b *testing.B) { 8 b.RunParallel(func(p *testing.PB) { 9 s := NewState() 10 for p.Next() { 11 s.Next() 12 } 13 }) 14 }