michie 0.2.13

An attribute macro that adds memoization to a function (sounds like Mickey)
Documentation
1
2
3
4
5
6
7
8
use michie::memoized;

#[memoized(key_expr = b)]
fn f(a: bool) -> bool {
    a
}

fn main() {}