michie 0.2.3

An attribute macro that adds memoization to a function (pronounced /'mikɪ/)
Documentation
1
2
3
4
5
6
7
8
use michie::memoized;

#[memoized(key_expr = ())]
const fn f() -> () {
    ()
}

fn main() {}