bivec 0.1.0

A Rust implementation of Bivec, two vecs in one, with the same length.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::ops::RangeBounds;

use super::*; 

impl <F, S> BiVec<F, S> {
    /// # Unimplemented 
    pub fn splice(&mut self, range: impl RangeBounds<usize>, replace_with: impl IntoIterator<Item = (F, S)>) 
        -> ! 
        // -> impl Iterator<Item = (F, S)>  
    {
        unimplemented!()
    }
}