Skip to main content

osom_lib_btree/
std.rs

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