Struct std::collections::btree_map::Range
[−]
[src]
pub struct Range<'a, K, V> where K: 'a, V: 'a {
// some fields omitted
}
Unstable (
collections
#27783): library is unlikely to be stabilized with the current layout and name, use std::collections instead
An iterator over a sub-range of BTreeMap's entries.
Trait Implementations
impl<'a, K, V> Clone for Range<'a, K, V>
fn clone(&self) -> Range<'a, K, V>
Unstable (
collections
#27783): library is unlikely to be stabilized with the current layout and name, use std::collections instead
fn clone_from(&mut self, source: &Self)
1.0.0
impl<'a, K, V> DoubleEndedIterator for Range<'a, K, V>
fn next_back(&mut self) -> Option<(&'a K, &'a V)>
Unstable (
collections
#27783): library is unlikely to be stabilized with the current layout and name, use std::collections instead
impl<'a, K, V> Iterator for Range<'a, K, V>
type Item = (&'a K, &'a V)
Unstable (
collections
#27783): library is unlikely to be stabilized with the current layout and name, use std::collections instead
fn next(&mut self) -> Option<(&'a K, &'a V)>
Unstable (
collections
#27783): library is unlikely to be stabilized with the current layout and name, use std::collections instead