heaparray 0.5.0

Flexible support for dynamically-sized types, using heap-allocated array of structs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! 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.

mod arc_array;
pub mod generic;
pub mod ref_counters;
mod types;

pub use crate::prelude::*;
pub use arc_array::*;
pub use types::*;