osom_lib_strings/immutable/std.rs
1//! Holds aliases usable with std feature.
2use osom_lib_alloc::std_allocator::StdAllocator;
3
4use crate::immutable::{ImmutableString, ImmutableStringBuilder};
5
6/// The alias for [`StdImmutableString`] with [`StdAllocator`].
7pub type StdImmutableString = ImmutableString<StdAllocator>;
8
9/// The alias for [`StdImmutableStringBuilder`] with [`StdAllocator`].
10pub type StdImmutableStringBuilder = ImmutableStringBuilder<StdAllocator>;