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
Merry Christmas, here's a fun bug report: Let's say we have this:
fn deal_into_new(it: Vector<u32>) -> Vector<u32> { it.into_iter().rev().collect() } let testv = vec![0; 300].into_iter().collect::<Vector<u32>>(); let ret = deal_into_new(testv.clone()); assert_eq!(ret.len(), testv.len());
This fails with ret.len() being 237. Oddly, this bug doesn't arise for n<300.
The text was updated successfully, but these errors were encountered:
74253ed
Thanks @bodil , really like the library!
Sorry, something went wrong.
No branches or pull requests
Merry Christmas, here's a fun bug report:
Let's say we have this:
This fails with ret.len() being 237.
Oddly, this bug doesn't arise for n<300.
The text was updated successfully, but these errors were encountered: