-
Notifications
You must be signed in to change notification settings - Fork 2
Implement BTreeMap::append
#5
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Comments
I'd like to work on implementing this, but I was having some trouble figuring out the testing. It seems that there is a private dependency on a btree repo ( #9 ). I tried removing the dependency and running the tests, but (unsurprisingly) it didn't compile. Do the existing tests pass? Where would be the best place to get started? |
#9 is now fixed! \o/ |
Thanks @gankro and @apasel422 It seems that there is not an already existing |
It takes another collection of the same type and moves all of its elements into self. See Vec::append, LinkedList::append. It's basically an |
See rust-lang/rust#26227 for some discussion and code on implementing this. Sorry for not touching this code in quite a while - I'm very swamped right now. |
No description provided.
The text was updated successfully, but these errors were encountered: