memoires 0.1.1

Memoization for Rust
Documentation
  • Coverage
  • 0%
    0 out of 4 items documented0 out of 3 items with examples
  • Size
  • Source code size: 2.49 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.23 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Traumatism

memoires 🧠

The hardest way to implement memoization in Rust...

Usage

Lets imagine you have a function that implement Fibonacci sequence:

fn fib(n: usize) -> usize {
    if n == 0 {
        0
    } else if n == 1 {
        1
    } else {
        fib(n - 1) + fib(n - 2)
    }
}


fn main() {
    // long as f*ck
    for i in 1..60 {
        println!("{}", fib(i))
    }
}

It gonna be change to:

use memoires::Memoire;

// The two generics of Memoire<usize, usize> must be change to the types
// your function will return.
//
// If you have a f(String) -> String, you gonna write Memoire<String, String>.
//
// IMPORTANT: 
//  - the input type must implement the Clone, Eq and Hash traits
//  - the output type must implement the Clone trait
//
fn fib<I, O>(n: usize, m: &mut Memoire<usize, usize>) -> usize {
    if n == 0 {
        0
    } else if n == 1 {
        1
    } else {
        m.run(n - 1) + m.run(n - 2) // Replace the function name with m.run
    }
}

fn main() {
    let mut fib_mem = Memoire::new(fib::<isize, isize>);

    for i in 1..60 {
        println!("{}", fib_mem.run(i))
    }
}