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
with_capacity
grow is documented that the capacity is set to exactly:
grow
max(new_cap, inline_size())
But documentation for with_capacity only says:
enough capacity pre-allocated to store at least n elements
If with_capacity guarantees what grow guarantees regarding the exact capacity, it would be worth it to document.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
grow
is documented that the capacity is set to exactly:But documentation for
with_capacity
only says:If
with_capacity
guarantees whatgrow
guarantees regarding the exact capacity, it would be worth it to document.The text was updated successfully, but these errors were encountered: