cl-generic-vec 0.4.0

a vector implementation that can be used in `no_std` envioronments
Documentation
1
2
3
4
5
6
7
8
#[cold]
#[inline(never)]
pub(in crate::raw) fn fixed_capacity_reserve_error(capacity: usize, new_capacity: usize) -> ! {
    panic!(
        "Tried to reserve {}, but used a fixed capacity storage of {}",
        new_capacity, capacity
    )
}