generic-vec 0.1.2

a vector implementation that can be used in `no_std` envioronments
1
2
3
4
5
#[cfg(feature = "nightly")]
mod nightly;

#[cfg(not(feature = "nightly"))]
mod stable;