mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 16:54:01 +00:00
Stabilize cstr_count_bytes
Newly stable API: ```rust impl CStr { pub fn count_bytes(&self) -> usize; } ``` Const stabilization has not yet been decided, so that will continue to be gated under <https://github.com/rust-lang/rust/issues/113219>. Fixes: <https://github.com/rust-lang/rust/issues/114441>
This commit is contained in:
parent
b234e44944
commit
0ef49fe35d
@ -517,8 +517,6 @@ impl CStr {
|
|||||||
/// # Examples
|
/// # Examples
|
||||||
///
|
///
|
||||||
/// ```
|
/// ```
|
||||||
/// #![feature(cstr_count_bytes)]
|
|
||||||
///
|
|
||||||
/// use std::ffi::CStr;
|
/// use std::ffi::CStr;
|
||||||
///
|
///
|
||||||
/// let cstr = CStr::from_bytes_with_nul(b"foo\0").unwrap();
|
/// let cstr = CStr::from_bytes_with_nul(b"foo\0").unwrap();
|
||||||
@ -530,7 +528,7 @@ impl CStr {
|
|||||||
#[inline]
|
#[inline]
|
||||||
#[must_use]
|
#[must_use]
|
||||||
#[doc(alias("len", "strlen"))]
|
#[doc(alias("len", "strlen"))]
|
||||||
#[unstable(feature = "cstr_count_bytes", issue = "114441")]
|
#[stable(feature = "cstr_count_bytes", since = "CURRENT_RUSTC_VERSION")]
|
||||||
#[rustc_const_unstable(feature = "const_cstr_from_ptr", issue = "113219")]
|
#[rustc_const_unstable(feature = "const_cstr_from_ptr", issue = "113219")]
|
||||||
pub const fn count_bytes(&self) -> usize {
|
pub const fn count_bytes(&self) -> usize {
|
||||||
self.inner.len() - 1
|
self.inner.len() - 1
|
||||||
|
Loading…
Reference in New Issue
Block a user