]> git.lizzy.rs Git - rust.git/commitdiff
std: Update stable since for `core::char`
authorAlex Crichton <alex@alexcrichton.com>
Thu, 11 Jun 2015 16:54:43 +0000 (09:54 -0700)
committerAlex Crichton <alex@alexcrichton.com>
Wed, 17 Jun 2015 16:07:17 +0000 (09:07 -0700)
Also add `#[doc(hidden)]` to a few internal functions.

src/libcore/char.rs

index 9f5944d3c9c71319a55e78553c8c7818dc99e19c..12aa06667a1dd3fb740203cebdaad306e0867bd5 100644 (file)
@@ -14,7 +14,7 @@
 
 #![allow(non_snake_case)]
 #![doc(primitive = "char")]
-#![stable(feature = "rust1", since = "1.0.0")]
+#![stable(feature = "core_char", since = "1.2.0")]
 
 use iter::Iterator;
 use mem::transmute;
@@ -225,6 +225,7 @@ fn encode_utf16(self, dst: &mut [u16]) -> Option<usize> {
 #[inline]
 #[unstable(feature = "char_internals",
            reason = "this function should not be exposed publicly")]
+#[doc(hidden)]
 pub fn encode_utf8_raw(code: u32, dst: &mut [u8]) -> Option<usize> {
     // Marked #[inline] to allow llvm optimizing it away
     if code < MAX_ONE_B && !dst.is_empty() {
@@ -258,6 +259,7 @@ pub fn encode_utf8_raw(code: u32, dst: &mut [u8]) -> Option<usize> {
 #[inline]
 #[unstable(feature = "char_internals",
            reason = "this function should not be exposed publicly")]
+#[doc(hidden)]
 pub fn encode_utf16_raw(mut ch: u32, dst: &mut [u16]) -> Option<usize> {
     // Marked #[inline] to allow llvm optimizing it away
     if (ch & 0xFFFF) == ch && !dst.is_empty() {