We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10efaa3 commit a51b22aCopy full SHA for a51b22a
src/libcore/iter/traits/collect.rs
@@ -343,15 +343,15 @@ pub trait Extend<A> {
343
fn extend<T: IntoIterator<Item = A>>(&mut self, iter: T);
344
345
/// Extends a collection with exactly one element.
346
- #[unstable(feature = "extend_one", issue = "none")]
+ #[unstable(feature = "extend_one", issue = "72631")]
347
fn extend_one(&mut self, item: A) {
348
self.extend(Some(item));
349
}
350
351
/// Reserves capacity in a collection for the given number of additional elements.
352
///
353
/// The default implementation does nothing.
354
355
fn extend_reserve(&mut self, additional: usize) {
356
let _ = additional;
357
0 commit comments