osom_lib_arc 0.1.2

ABI-stable atomic reference counted pointers for osom_lib.
Documentation
1
2
3
4
5
6
7
//! This module defines the std aliases.
use osom_lib_alloc::std_allocator::StdAllocator;

use super::carc::CArc;

/// The alias for [`CArc`] with [`StdAllocator`].
pub type StdArc<T> = CArc<T, StdAllocator>;