...

Package grpcrand

import "github.com/letsencrypt/boulder/grpc/internal/grpcrand"
Overview
Index

Overview ▾

Package grpcrand implements math/rand functions in a concurrent-safe way with a global random source, independent of math/rand's global source.

func Float64

func Float64() float64

Float64 implements rand.Float64 on the grpcrand global source.

func Int

func Int() int

Int implements rand.Int on the grpcrand global source.

func Int63n

func Int63n(n int64) int64

Int63n implements rand.Int63n on the grpcrand global source.

func Intn

func Intn(n int) int

Intn implements rand.Intn on the grpcrand global source.

func Uint64

func Uint64() uint64

Uint64 implements rand.Uint64 on the grpcrand global source.