We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I don't understand why such a simple library has to be over extended and complex.
I mean for example, to get a string from words.
let description: Vec<String> = Words(0..50).fake(); let description = description.join(" ");
Why couldn't this be
let description = Words(0..50).fake();
The text was updated successfully, but these errors were encountered:
Maybe Sentence(count: Range); is what you want? Sentence(1).fake()
Sentence(1).fake()
Sorry, something went wrong.
Indeed thanks for the speedy reply. Just similar methods hehe.
you can view it as convenient function, you can use words if it serve you well.
No branches or pull requests
I don't understand why such a simple library has to be over extended and complex.
I mean for example, to get a string from words.
Why couldn't this be
let description = Words(0..50).fake();
The text was updated successfully, but these errors were encountered: