-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
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
WIP move ordered iterators to associated items #78
Conversation
:o this is much nicer. |
Bah, the ICE persists |
#[cfg(feature="trie_map")] | ||
impl<'a> OrderedSetIterator<usize> for trie_set::Iter<'a> {} | ||
impl<'a, K, V> OrderedMapIterator<Key=&'a K, Val=&'a V> for tree_map::Iter<'a, K, V> {} | ||
#[cfg(feature="tree_map")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/tree_map/trie_map/
Current roadblock:
Illegal recursive type. |
Oh, yeah. That is rust-lang/rust#20825. |
If you rebase on master, this will build now. You can add [profile.dev]
debug = false to |
I'm still seeing the error. Do you mean rebase on rust master? As in the next nightly? |
Using today's nightly ( |
Ah I'm a nightly back. On a bad internet connection, want to finish this PR up? |
Sure. Let me take a look. On Fri, Mar 6, 2015 at 7:16 PM, Alexis Beingessner <[email protected]
|
WIP move ordered iterators to associated items
🎊 |
Doesn't work because of this ICE: rust-lang/rust#20220
But I think this is the right approach.