cow_vec 1.4.0

A vector-like container optimized for efficient cloning with copy-on-write semantics
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![doc = include_str!("../README.md")]

mod cow_vec;
mod iterator;

pub use cow_vec::CowVec;
pub use iterator::CowVecIter;

#[cfg(test)]
#[path = "tests/cow_vec_tests.rs"]
mod tests;