iter-scan 0.4.0

Iterator scan methods that don't suck
Documentation
1
2
3
4
5
6
7
8
/// Pseudo stateless function.
///
/// Unlike a function pointer, this forces static dispatching.
///
/// Unlike an `Fn` trait, this can be implemented to any type.
pub trait PseudoFunc<X, Y> {
    fn exec(x: X) -> Y;
}