Skip to main content

zigzag_alloc/
lib.rs

1#![cfg_attr(not(feature = "std"), no_std)]
2
3#[cfg(not(feature = "std"))]
4pub mod panic;
5
6pub mod alloc;
7pub mod collections;
8
9#[cfg(feature = "ffi")]
10pub mod ffi;
11
12mod simd;
13
14pub use collections::{ExBoundedArray, ExBox, ExHashMap, ExPriorityQueue, ExString, ExVec};