2020-08-01 07:18:52 -05:00
|
|
|
#![feature(linked_list_cursors)]
|
2019-04-18 04:54:21 -05:00
|
|
|
use std::collections::LinkedList;
|
|
|
|
|
|
|
|
fn list_from<T: Clone>(v: &[T]) -> LinkedList<T> {
|
|
|
|
v.iter().cloned().collect()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let mut m = list_from(&[0, 2, 4, 6, 8]);
|
|
|
|
let len = m.len();
|
|
|
|
{
|
2020-08-01 07:18:52 -05:00
|
|
|
let mut it = m.cursor_front_mut();
|
|
|
|
it.insert_before(-2);
|
2019-04-18 04:54:21 -05:00
|
|
|
loop {
|
2020-08-01 07:18:52 -05:00
|
|
|
match it.current().copied() {
|
2019-04-18 04:54:21 -05:00
|
|
|
None => break,
|
|
|
|
Some(elt) => {
|
|
|
|
match it.peek_next() {
|
2020-08-01 07:18:52 -05:00
|
|
|
Some(x) => assert_eq!(*x, elt + 2),
|
|
|
|
None => assert_eq!(8, elt),
|
2019-04-18 04:54:21 -05:00
|
|
|
}
|
2020-08-01 07:18:52 -05:00
|
|
|
it.insert_after(elt + 1);
|
|
|
|
it.move_next(); // Move by 2 to skip the one we inserted.
|
|
|
|
it.move_next();
|
2019-04-18 04:54:21 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-08-01 07:18:52 -05:00
|
|
|
it.insert_before(99);
|
|
|
|
it.insert_after(-10);
|
2019-04-18 04:54:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
assert_eq!(m.len(), 3 + len * 2);
|
|
|
|
assert_eq!(m.into_iter().collect::<Vec<_>>(),
|
2020-08-01 07:18:52 -05:00
|
|
|
[-10, -2, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 99]);
|
2019-04-18 04:54:21 -05:00
|
|
|
}
|