Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Memoization

Rust

#![allow(unused)]
fn main() {
;cargo add cached

use cached::proc_macro::cached;

#[cached]
fn fib(n: u64) -> u64 {
    ...
}
}

Python

from functools import cache

@cache
def fib(n):
    ...