]> git.lizzy.rs Git - rust.git/commitdiff
core: Make a new tracking issue for prelude traits
authorAlex Crichton <alex@alexcrichton.com>
Tue, 8 Mar 2016 00:34:35 +0000 (16:34 -0800)
committerAlex Crichton <alex@alexcrichton.com>
Sat, 12 Mar 2016 06:09:58 +0000 (22:09 -0800)
The referenced issues here were both closed, so hook up a new issue which tracks
specifically the prelude traits being unstable.

src/libcore/char.rs
src/libcore/num/f32.rs
src/libcore/num/f64.rs
src/libcore/num/mod.rs
src/libcore/slice.rs
src/libcore/str/mod.rs

index a23b303f4bab1db9c731c5e2556f782e09889e77..abae121ea7f53e21836b29de8cb6b533d1917186 100644 (file)
@@ -255,7 +255,7 @@ pub fn from_digit(num: u32, radix: u32) -> Option<char> {
 #[doc(hidden)]
 #[unstable(feature = "core_char_ext",
            reason = "the stable interface is `impl char` in later crate",
-           issue = "27701")]
+           issue = "32110")]
 pub trait CharExt {
     #[stable(feature = "core", since = "1.6.0")]
     fn is_digit(self, radix: u32) -> bool;
index 8af1022acdf24bdb7150653dffb213fe59501500..c24eaa3eabc754956e1ef4027328b813632b941e 100644 (file)
@@ -141,7 +141,7 @@ pub mod consts {
 
 #[unstable(feature = "core_float",
            reason = "stable interface is via `impl f{32,64}` in later crates",
-           issue = "27702")]
+           issue = "32110")]
 impl Float for f32 {
     #[inline]
     fn nan() -> f32 { NAN }
index 9486e4337bf58f56dcbd38b6527c68c73174ec5f..beeee80902525f16c0684bda05e2debc1832d99f 100644 (file)
@@ -141,7 +141,7 @@ pub mod consts {
 
 #[unstable(feature = "core_float",
            reason = "stable interface is via `impl f{32,64}` in later crates",
-           issue = "27702")]
+           issue = "32110")]
 impl Float for f64 {
     #[inline]
     fn nan() -> f64 { NAN }
index 0b306c810b1954f520dfb0bb96135554c2143878..cf25113237d038020eed7d10197541a69f0e5c71 100644 (file)
@@ -2209,7 +2209,7 @@ pub enum FpCategory {
 #[doc(hidden)]
 #[unstable(feature = "core_float",
            reason = "stable interface is via `impl f{32,64}` in later crates",
-           issue = "27702")]
+           issue = "32110")]
 pub trait Float: Sized {
     /// Returns the NaN value.
     #[unstable(feature = "float_extras", reason = "needs removal",
index 233e556b27ee8c608b85284dfb069bb9f2415880..77fc0e7159f1606793d060a36d679963711bde6d 100644 (file)
@@ -61,7 +61,7 @@
 /// Extension methods for slices.
 #[unstable(feature = "core_slice_ext",
            reason = "stable interface provided by `impl [T]` in later crates",
-           issue = "27701")]
+           issue = "32110")]
 #[allow(missing_docs)] // documented elsewhere
 pub trait SliceExt {
     type Item;
@@ -182,7 +182,7 @@ macro_rules! slice_ref {
 
 #[unstable(feature = "core_slice_ext",
            reason = "stable interface provided by `impl [T]` in later crates",
-           issue = "27701")]
+           issue = "32110")]
 impl<T> SliceExt for [T] {
     type Item = T;
 
index dee13bf3d3db13f30e8ef37af25eeadbe3ce11e2..f9d1902bea7a7cfe43030c3d940061fdffe88c2a 100644 (file)
@@ -1561,7 +1561,7 @@ fn index_mut(&mut self, index: ops::RangeToInclusive<usize>) -> &mut str {
 #[doc(hidden)]
 #[unstable(feature = "core_str_ext",
            reason = "stable interface provided by `impl str` in later crates",
-           issue = "27701")]
+           issue = "32110")]
 pub trait StrExt {
     // NB there are no docs here are they're all located on the StrExt trait in
     // libcollections, not here.