data-structures 0.1.0

A simple data structures crate in rust, WIP
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use super::node::*;

pub struct Iter<'a, T>(pub &'a Next<T>);

impl<'a, T> Iterator for Iter<'a, T> {
    type Item = &'a T;

    fn next<'b>(&'b mut self) -> Option<&'a T> {
        (**(*self).0).as_ref().map(|node| {
            (*self).0 = &(*node).next;
            &(*node).data
        })
    }
}