hyqe / rdg

Random Data Generator
MIT License
0 stars 0 forks source link

Implement random number generators #1

Open jakobii opened 3 years ago

jakobii commented 3 years ago
func Int32() int32
func Int32Between(min, max int32) int32

func Int64() int64
func Int64Between(min, max int64) int64

func Uint32() uint32
func Uint32Between(min, max uint32) uint32

func Uint64() uint64
func Uint64Between(min, max uint64) uint64

func Float32() float32
func Float32Between(min, max float32) float32

func Float64() float64
func Float64Between(min, max float64) float64
jakobii commented 3 years ago

still need float and uint functions.