├── .gitignore ├── README.md ├── example └── main.go ├── phone.go ├── rand.go ├── rand_car_plate.go ├── rand_ip.go ├── rand_name.go ├── rand_string.go ├── rand_test.go ├── slice.go └── slice_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goroom/rand/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goroom/rand/HEAD/README.md -------------------------------------------------------------------------------- /example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goroom/rand/HEAD/example/main.go -------------------------------------------------------------------------------- /phone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goroom/rand/HEAD/phone.go -------------------------------------------------------------------------------- /rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goroom/rand/HEAD/rand.go -------------------------------------------------------------------------------- /rand_car_plate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goroom/rand/HEAD/rand_car_plate.go -------------------------------------------------------------------------------- /rand_ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goroom/rand/HEAD/rand_ip.go -------------------------------------------------------------------------------- /rand_name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goroom/rand/HEAD/rand_name.go -------------------------------------------------------------------------------- /rand_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goroom/rand/HEAD/rand_string.go -------------------------------------------------------------------------------- /rand_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goroom/rand/HEAD/rand_test.go -------------------------------------------------------------------------------- /slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goroom/rand/HEAD/slice.go -------------------------------------------------------------------------------- /slice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goroom/rand/HEAD/slice_test.go --------------------------------------------------------------------------------