jaswdr / faker

:rocket: Ultimate fake data generator for Go with zero dependencies
https://pkg.go.dev/github.com/jaswdr/faker
MIT License
566 stars 59 forks source link

[FEATURE] Add methods for uints #125

Closed d-a-m closed 1 year ago

d-a-m commented 2 years ago

Is your feature request related to a problem? Please describe. It is convenient to have same methods for uint - uint64 that we have for int type. For example: UIntBetween(min, max uint64) uint64 - UInt64Between(min, max uint64) uint64.

Describe the solution you'd like We can take the IntBetween(min, max int) int as basement and make UIntXXBetween(min, max uintXX) uintXX.