lup 0.3.0

A custom indexed loop macro library for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use *;

/// A loop that creates a list.
pub struct Sift<T>(pub T);

impl<T> Lup<usize, T> for Sift<Vec<T>> {
    type Inner = Vec<T>;

    fn start() -> Self {Sift(vec![])}
    fn it(&mut self, _ind: usize, val: T) -> bool {
        self.0.push(val);
        true
    }
    fn unwrap(self) -> Self::Inner {self.0}
}