diff options
| author | Smitty <me@smitop.com> | 2021-07-29 13:00:55 -0400 |
|---|---|---|
| committer | Mark Rousskov <mark.simulacrum@gmail.com> | 2021-12-06 21:05:13 -0500 |
| commit | eb56693a370df5bb60f58f73586cded6a641b0cc (patch) | |
| tree | fd8c3686dba481883f95e9f3807f11478b0171a5 /library/core/src/prelude/v1.rs | |
| parent | 0fb1c371d4a14f9ce7a721d8aea683a6e6774f6c (diff) | |
| download | rust-eb56693a370df5bb60f58f73586cded6a641b0cc.tar.gz rust-eb56693a370df5bb60f58f73586cded6a641b0cc.zip | |
Implement concat_bytes!
The tracking issue for this is #87555.
Diffstat (limited to 'library/core/src/prelude/v1.rs')
| -rw-r--r-- | library/core/src/prelude/v1.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/library/core/src/prelude/v1.rs b/library/core/src/prelude/v1.rs index 6b51ef5b012..8705eb39468 100644 --- a/library/core/src/prelude/v1.rs +++ b/library/core/src/prelude/v1.rs @@ -61,6 +61,15 @@ pub use crate::{ }; #[unstable( + feature = "concat_bytes", + issue = "87555", + reason = "`concat_bytes` is not stable enough for use and is subject to change" +)] +#[cfg(not(bootstrap))] +#[doc(no_inline)] +pub use crate::concat_bytes; + +#[unstable( feature = "asm", issue = "72016", reason = "inline assembly is not stable enough for use and is subject to change" |
