mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-05 14:31:22 +00:00
12 lines
220 B
Go
12 lines
220 B
Go
// +build go1.6
|
|
|
|
package sdkrand
|
|
|
|
import "math/rand"
|
|
|
|
// Read provides the stub for math.Rand.Read method support for go version's
|
|
// 1.6 and greater.
|
|
func Read(r *rand.Rand, p []byte) (int, error) {
|
|
return r.Read(p)
|
|
}
|