bivec/core/
split.rs

1use super::*; 
2
3impl <F, S> BiVec<F, S> {
4    /// # Unimplement 
5    pub fn split_at(&mut self, at: usize) -> ! {
6        assert!(at <= self.len, "index out of bounds"); 
7        unimplemented!()
8    }
9    /// # Unimplement 
10    pub fn split_off(&mut self, at: usize) -> ! {
11        assert!(at <= self.len, "index out of bounds"); 
12        unimplemented!()
13    }
14}