tailvec 0.2.13

Split Vec to mutable slice and TailVec, the TailVec can push or pop etc
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![forbid(unsafe_op_in_unsafe_fn)]
#![doc = include_str!("../README.md")]
#![cfg_attr(not(feature = "std"), no_std)]

mod tailvec;
mod retain;
mod drain;
mod utils;
pub use tailvec::*;

#[cfg(test)]
#[cfg(feature = "std")]
mod tests;