//! This module defines the std aliases.
useosom_lib_alloc::std_allocator::StdAllocator;usesuper::{carc::CArc,weak::CWeak};/// The alias for [`CArc`] with [`StdAllocator`].
pubtypeStdCArc<T>=CArc<T, StdAllocator>;/// The alias for [`CWeak`] with [`StdAllocator`].
pubtypeStdCWeak<T>=CWeak<T, StdAllocator>;