stdx/
alloc.rs

1// Unstable Rust code
2//
3// SPDX-FileCopyrightText: (c) The Rust Project Contributors
4// SPDX-License-Identifier: Apache-2.0 OR MIT
5// - https://github.com/rust-lang/rust/blob/master/LICENSE-MIT
6//! Unstable Memory allocation APIs
7mod allocator;
8mod impls;
9
10pub use self::allocator::{AllocError, Allocator, non_null_empty_slice};
11pub use self::impls::global::Global;