osom_lib_arc 0.1.26

ABI-stable atomic reference counted pointers for osom_lib.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! This module holds the [`CArcArray`] and [`CWeakArray`] types and their implementations.
//! It also provides the [`CArcArrayBuilder`] type for iteratively constructing [`CArcArray`].

mod internal;
mod layout;

mod carc_array;
pub use carc_array::*;

mod weak_array;
pub use weak_array::*;

mod carc_array_builder;
pub use carc_array_builder::*;