From d07708595a63f7740c12c6bd76660fe7537aabe9 Mon Sep 17 00:00:00 2001 From: Lokathor Date: Fri, 24 Jan 2020 02:46:18 -0700 Subject: [PATCH] Convert code notes into GitHub issues --- src/arrayvec.rs | 2 -- src/tinyvec.rs | 8 -------- 2 files changed, 10 deletions(-) diff --git a/src/arrayvec.rs b/src/arrayvec.rs index 94adfc7..5ca8eab 100644 --- a/src/arrayvec.rs +++ b/src/arrayvec.rs @@ -422,8 +422,6 @@ impl ArrayVec { item } - // NIGHTLY: remove_item, https://github.com/rust-lang/rust/issues/40062 - /// Resize the vec to the new length. /// /// If it needs to be longer, it's filled with clones of the provided value. diff --git a/src/tinyvec.rs b/src/tinyvec.rs index 7db83ad..ac81b66 100644 --- a/src/tinyvec.rs +++ b/src/tinyvec.rs @@ -275,8 +275,6 @@ impl TinyVec { } } - // LATER(Vec): drain_filter #nightly https://github.com/rust-lang/rust/issues/43244 - /// Clone each element of the slice into this vec. #[inline] pub fn extend_from_slice(&mut self, sli: &[A::Item]) @@ -418,8 +416,6 @@ impl TinyVec { } } - // NIGHTLY: remove_item, https://github.com/rust-lang/rust/issues/40062 - /// Resize the vec to the new length. /// /// If it needs to be longer, it's filled with clones of the provided value. @@ -505,8 +501,6 @@ impl TinyVec { } } - // LATER(Vec): splice - /// Splits the collection at the point given. /// /// * `[0, at)` stays in this vec @@ -594,8 +588,6 @@ pub struct TinyVecDrain<'p, A: Array> { target_index: usize, target_count: usize, } -// GoodFirstIssue: this entire type is correct but slow. -// NIGHTLY: vec_drain_as_slice, https://github.com/rust-lang/rust/issues/58957 impl<'p, A: Array> Iterator for TinyVecDrain<'p, A> { type Item = A::Item; #[inline]