zigzag-alloc 1.0.0

A collection of explicit memory allocators and collections inspired by Zig
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![cfg_attr(not(feature = "std"), no_std)]

#[cfg(not(feature = "std"))]
pub mod panic;

pub mod alloc;
pub mod collections;

#[cfg(feature = "ffi")]
pub mod ffi;

mod simd;

pub use collections::{ExBoundedArray, ExBox, ExHashMap, ExPriorityQueue, ExString, ExVec};