turbocow 0.3.0-beta.2

Compact, clone-on-write vectors, strings, maps and sets with inline + referenced storage — a superset of ecow.
Documentation
1
2
3
4
5
6
7
8
9
10
//! A clone-on-write, small-string-optimized alternative to [`String`].

mod byte_string;
mod default;

pub use byte_string::*;
pub use default::{EcoStr, EcoString, ToEcoString};

#[cfg(feature = "rkyv")]
mod rkyv_impl;