1//! This module defines the std aliases.
2use osom_lib_alloc::std_allocator::StdAllocator;
34use crate::defaults::DefaultBTree;
56/// An alias for [`DefaultBTree`] with [`StdAllocator`]. Requires `std` feature.
7pub type StdBTree<TKey, TValue> = DefaultBTree<TKey, TValue, StdAllocator>;