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
Code to reproduce:
use smallvec::SmallVec; fn main() { let input = "0123456"; let collected: SmallVec<char, 4> = input .chars() .collect(); println!("{collected:?}"); // expected: ['0', '1', '2', '3', '4', '5', '6'] // actual: ['0', '1', '2', '3', '5', '6'] }
This only occurs in 2.0 alpha versions, it also did not occur when collecting from a range.
The text was updated successfully, but these errors were encountered:
3d64200
Thanks for the report! This is fixed in 2.0.0-alpha.9.
Sorry, something went wrong.
Thank you! That was very quick
Just for reference, this bug was introduced in #362. The only affected version was smallvec 2.0.0-alpha.8.
No branches or pull requests
Code to reproduce:
This only occurs in 2.0 alpha versions, it also did not occur when collecting from a range.
The text was updated successfully, but these errors were encountered: