heaparray 0.5.1

Flexible support for dynamically-sized types, using heap-allocated array of structs
Documentation
1
2
3
4
5
6
7
8
9
10
//! This module contains naively reference counted arrays, both as atomic and
//! regular versions; i.e. if you're not careful, you could make a cycle that
//! never gets deallocated.

pub mod generic;
pub mod ref_counters;
mod types;

pub use crate::api_prelude_rc::*;
pub use types::*;