Vec container that utilizes "Cursor"
```rust use cursorvec::*;
let mut vec = CursorVec::new().with_container(vec!["first", "second", "third", "fourth", "fifth"]);
// Move cursor to next and get cursor's value asserteq!(Some(&"first"), vec.getcurrent().value()); asserteq!(Some(&"second"), vec.movenextandget().value()); asserteq!(Some(&"fifth"), vec.movenextnthandget(3).value()); asserteq!(CursorState::MaxOut, vec.movenextand_get());
// Move cursor to prevous and get cursor's value asserteq!(Some(&"fourth"), vec.moveprevandget().value()); asserteq!(Some(&"first"), vec.moveprevnthandget(3).value()); asserteq!(CursorState::MinOut, vec.moveprevand_get());
// Reset cursor vec.set_cursor(0);
// Move cursor and tries to get values regardless of cursor success asserteq!(Some(&"fifth"), vec.movenextnthandgetalways(10000)); asserteq!(Some(&"first"), vec.moveprevnthandgetalways(10000));
// Container with rotating cursor let mut vec = CursorVec::new() .rotatable(true) .with_container(vec![1, 2, 3, 4, 5, 6, 7, 8]);
asserteq!(Some(&3), vec.movenextnthandget(10).value()); // always is not so differnt from non-always variant if rotation is set asserteq!(Some(&7), vec.movenextnthandget_always(4));
// Modify container and update cursor vec.drain(5..); vec.update_cursor();
// Cursor automatically goes to available index asserteq!(Some(&5), vec.getcurrent().value());
// Modify without update can possibly cause out of range error vec.drain(1..); asserteq!(CursorState::OutOfRange, vec.getcurrent());
vec.updatecursor(); assertne!(CursorState::OutOfRange, vec.get_current());
vec.setcontainer(vec![1, 2, 3, 4, 5, 6, 7, 8]); vec.setcursor(6); asserteq!(Some(&7), vec.getcurrent().value());
// Use modify method to auto update cursor vec.modify(|cont| cont.retain(|num| *num % 2 == 0));
// Cursor // | // vec![2, 4, 6, 8] asserteq!(Some(3), vec.getcursor()); asserteq!(Some(&8), vec.getcurrent().value()); ```