bankarr 0.8.0

Array-like but growable vectors
Documentation
//! 
//! Fixed-size arrays structs with vec-like semantics.
//! 
//! [`BankArr<T, C>`] is a fixed-size, array struct, storing items on the stack up to `C`.
//! 
//! [`BankVec<T, C>`] is a fixed-size as well, but can exceed `C`, reallocating onto the
//! heap when doing so.
//! 
//! 
//! # Performance
//! 
//! `BankArr` is about as fast as a stack-allocated array.  `BankVec` is generally
//! faster than vec as well, but only while its capacity is equal or less than its 
//! generic `C`.  Once `BankVec` has reallocated to the heap its generally on par
//! with a Vec, but in some cases slower.
//! 
//! # Time Complexity
//! 
//! You should prefer `BankArr` when you have an upper limit you know you wont exceed, 
//! and only considering `BankVec` when your data may occasionally spill over.  
//! 
//! In general `BankVec` will be *almost* as fast as `BankArr`, but has performance overhead for 
//! managing its variants but especially when tranforming into a heap allocation. Spilling over `C` requires
//! *O*(`C`) time complexity to move over to the heap.
//! 
//! # Similar Crates
//! 
//! This crate was inspired heavily from a few existing crate with similar intent,
//! namely [`SmallVec`](<https://crates.io/crates/smallvec>) and
//! [`ArrayVec`](<https://crates.io/crates/arrayvec>).
//! 
//! Comparing `BankArr` with `ArrayVec` and `BankVec` with `SmallVec`, performance
//! is generally equivalent, but in some cases this crate is favored.
//! 
//! 

mod bankarray;
mod bankvec;
mod drain;
pub(crate)mod errors;


pub use bankarray::BankArr;
pub use bankvec::BankVec;


#[cfg(test)]
mod tests {

    use super::*;

    #[test]
    fn readme() {
        let mut bank = BankArr::<i32, 5>::from([1, 2]);
        bank.push(3);
        assert_eq!(bank, [1, 2, 3]);
        assert_eq!(bank.pop(), Some(3));

        bank.extend([3, 4, 5]);

        let removed = bank.swap_remove(0);
        assert_eq!(removed, 1);
        assert_eq!(bank, [5, 2, 3, 4]);

        // BankVec has most of the same features but can exceed its capacity
        let mut bank = BankVec::<i32, 5>::from([1, 2, 3, 4]);
        assert!(!bank.on_heap());
        bank.extend([5, 6, 7, 8]);
        assert!(bank.on_heap());

        assert_eq!(bank, [1, 2, 3, 4, 5, 6, 7, 8]);
    }
}