view README.md @ 21:48a447de2a0f

Another fix.
author Lewin Bormann <lbo@spheniscida.de>
date Thu, 15 Oct 2020 23:42:11 +0200
parents b6d585f95c1d
children c15379dd7de7
line wrap: on
line source

# memoize

[![Docs.rs](https://docs.rs/memoize/badge.svg)](https://crates.io/crates/memoize)
[![Crates.rs](https://img.shields.io/crates/v/memoize.svg)](https://crates.io/memoize)

A `#[memoize]` attribute for somewhat simple Rust functions: That is, functions
with one or more `Clone`-able arguments, and a `Clone`-able return type. That's it.

Read the documentation (`cargo doc --open`) for the sparse details, or take a
look at the `examples/`, if you want to know more:

```rust
// From examples/test2.rs

use memoize::memoize;

#[memoize]
fn hello(arg: String, arg2: usize) -> bool {
  arg.len()%2 == arg2
}

fn main() {
  // `hello` is only called once here.
  assert!(! hello("World".to_string(), 0));
  assert!(! hello("World".to_string(), 0));
  // Sometimes one might need the original function.
  assert!(! memoized_original_hello("World".to_string(), 0));
}
```

This is expanded into (with a few simplifications):

```rust
// This is obviously further expanded before compiling.
lazy_static! {
  static ref MEMOIZED_MAPPING_HELLO : Mutex<HashMap<String, bool>>;
}

fn memoized_original_hello(arg: String, arg2: usize) -> bool {
  arg.len() % 2 == arg2
}

fn hello(arg: String, arg2: usize) -> bool {
  let mut hm = &mut MEMOIZED_MAPPING_HELLO.lock().unwrap();
  if let Some(r) = hm.get(&(arg.clone(), arg2.clone())) {
    return r.clone();
  }
  let r = memoized_original_hello(arg.clone(), arg2.clone());
  hm.insert((arg, arg2), r.clone());
  r
}
```

## Contributions

...are always welcome! This being my first procedural-macros crate, I am
grateful for improvements of functionality and style. Please send a pull
request, and don't be discouraged if it takes a while for me to review it; I'm
sometimes a bit slow to catch up here :)   -- Lewin