We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 064deca commit dbf8a13Copy full SHA for dbf8a13
library/alloc/src/collections/vec_deque/mod.rs
@@ -24,11 +24,6 @@ use crate::collections::{TryReserveError, TryReserveErrorKind};
24
use crate::raw_vec::RawVec;
25
use crate::vec::Vec;
26
27
-#[unstable(feature = "vec_deque_extract_if", issue = "147750")]
28
-pub use self::extract_if::ExtractIf;
29
-
30
-mod extract_if;
31
32
#[macro_use]
33
mod macros;
34
@@ -37,6 +32,11 @@ pub use self::drain::Drain;
37
38
mod drain;
39
35
+#[unstable(feature = "vec_deque_extract_if", issue = "147750")]
36
+pub use self::extract_if::ExtractIf;
+
+mod extract_if;
40
#[stable(feature = "rust1", since = "1.0.0")]
41
pub use self::iter_mut::IterMut;
42
0 commit comments