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
pub(crate) mod variance;

#[inline(always)]
pub(crate) const fn max(x: usize, y: usize) -> usize {
    if x > y { x } else { y }
}