… to separate it from that of the crate. New tracking issue: https://github.com/rust-lang/rust/issues/58935
16 lines
410 B
Rust
16 lines
410 B
Rust
//! The alloc Prelude
|
|
//!
|
|
//! The purpose of this module is to alleviate imports of commonly-used
|
|
//! items of the `alloc` crate by adding a glob import to the top of modules:
|
|
//!
|
|
//! ```
|
|
//! # #![allow(unused_imports)]
|
|
//! # #![feature(alloc)]
|
|
//! #![feature(alloc_prelude)]
|
|
//! extern crate alloc;
|
|
//! use alloc::prelude::v1::*;
|
|
//! ```
|
|
|
|
#![unstable(feature = "alloc_prelude", issue = "58935")]
|
|
|
|
pub mod v1;
|