diff options
| author | bors <bors@rust-lang.org> | 2016-06-11 08:52:22 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-06-11 08:52:22 -0700 |
| commit | 35841eea8b9eac8dcfc675cf7fb7902a4d2a57d7 (patch) | |
| tree | 3c516b6a70720a1dacd1273d7b2730b0951c58e7 /src | |
| parent | 7d8e6dd3bfdec0b0a6f47b10966673f88a9242f5 (diff) | |
| parent | 9bf5daca90b18f3211b2751f2089082c319d9ab5 (diff) | |
Auto merge of #34153 - apasel422:btree, r=alexcrichton
Update tracking issue for `{BTreeMap, BTreeSet}::{append, split_off}`
r? @alexcrichton
Diffstat (limited to 'src')
| -rw-r--r-- | src/libcollections/btree/map.rs | 4 | ||||
| -rw-r--r-- | src/libcollections/btree/set.rs | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/libcollections/btree/map.rs b/src/libcollections/btree/map.rs index 26e71d20833..43226d23368 100644 --- a/src/libcollections/btree/map.rs +++ b/src/libcollections/btree/map.rs @@ -584,7 +584,7 @@ impl<K: Ord, V> BTreeMap<K, V> { /// assert_eq!(a[&5], "f"); /// ``` #[unstable(feature = "btree_append", reason = "recently added as part of collections reform 2", - issue = "19986")] + issue = "34152")] pub fn append(&mut self, other: &mut Self) { // Do we have to append anything at all? if other.len() == 0 { @@ -938,7 +938,7 @@ impl<K: Ord, V> BTreeMap<K, V> { /// ``` #[unstable(feature = "btree_split_off", reason = "recently added as part of collections reform 2", - issue = "19986")] + issue = "34152")] pub fn split_off<Q: ?Sized + Ord>(&mut self, key: &Q) -> Self where K: Borrow<Q> { diff --git a/src/libcollections/btree/set.rs b/src/libcollections/btree/set.rs index 765595be317..c47eb0b3fad 100644 --- a/src/libcollections/btree/set.rs +++ b/src/libcollections/btree/set.rs @@ -576,7 +576,7 @@ impl<T: Ord> BTreeSet<T> { /// assert!(a.contains(&5)); /// ``` #[unstable(feature = "btree_append", reason = "recently added as part of collections reform 2", - issue = "19986")] + issue = "34152")] pub fn append(&mut self, other: &mut Self) { self.map.append(&mut other.map); } @@ -613,7 +613,7 @@ impl<T: Ord> BTreeSet<T> { /// ``` #[unstable(feature = "btree_split_off", reason = "recently added as part of collections reform 2", - issue = "19986")] + issue = "34152")] pub fn split_off<Q: ?Sized + Ord>(&mut self, key: &Q) -> Self where T: Borrow<Q> { BTreeSet { map: self.map.split_off(key) } } |
