RandLower generate a random lower case string of specified length. Play: https://go.dev/play/p/XJtZ471cmtI
(length int)
| 253 | // RandLower generate a random lower case string of specified length. |
| 254 | // Play: https://go.dev/play/p/XJtZ471cmtI |
| 255 | func RandLower(length int) string { |
| 256 | return random(LowwerLetters, length) |
| 257 | } |
| 258 | |
| 259 | // RandNumeral generate a random numeral string of specified length. |
| 260 | // Play: https://go.dev/play/p/g4JWVpHsJcf |
searching dependent graphs…