pub fn rand() -> &'static str
Expand description
Selects a random name out of *all* available three-letter names (including UPPERCASE, Usualcase and lowercase).
Note that this dependent on which features are given. For example, if only the three-uppercase
-feature is given,
this will only return uppercase names.
§Returns
A &'static str
that refers to a random constant in this crate.
§Example
use names::three::rand;
// Could print any of the `AMY`, `Bob`, `cho`, ... names!
println!("{}", rand());