@@ -2032,7 +2032,7 @@ impl<K, V> BTreeMap<K, V> {
2032
2032
/// assert_eq!(keys, [1, 2]);
2033
2033
/// ```
2034
2034
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
2035
- pub fn keys < ' a > ( & ' a self ) -> Keys < ' a , K , V > {
2035
+ pub fn keys ( & self ) -> Keys < ' _ , K , V > {
2036
2036
Keys { inner : self . iter ( ) }
2037
2037
}
2038
2038
@@ -2053,7 +2053,7 @@ impl<K, V> BTreeMap<K, V> {
2053
2053
/// assert_eq!(values, ["hello", "goodbye"]);
2054
2054
/// ```
2055
2055
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
2056
- pub fn values < ' a > ( & ' a self ) -> Values < ' a , K , V > {
2056
+ pub fn values ( & self ) -> Values < ' _ , K , V > {
2057
2057
Values { inner : self . iter ( ) }
2058
2058
}
2059
2059
@@ -2557,8 +2557,8 @@ enum UnderflowResult<'a, K, V> {
2557
2557
Stole ( NodeRef < marker:: Mut < ' a > , K , V , marker:: Internal > ) ,
2558
2558
}
2559
2559
2560
- fn handle_underfull_node < ' a , K , V > ( node : NodeRef < marker:: Mut < ' a > , K , V , marker:: LeafOrInternal > )
2561
- -> UnderflowResult < ' a , K , V > {
2560
+ fn handle_underfull_node < K , V > ( node : NodeRef < marker:: Mut < ' _ > , K , V , marker:: LeafOrInternal > )
2561
+ -> UnderflowResult < ' _ , K , V > {
2562
2562
let parent = if let Ok ( parent) = node. ascend ( ) {
2563
2563
parent
2564
2564
} else {
0 commit comments