function_cache
is a simple generic wrapper around a function that caches results for a given input to a hash map.
It is based on the example from chapter 13.1 of the Rust book and serves as a small example for me to better understand the Cargo package ecosystem!
To install, simple add the function_cache
crate your Cargo.toml
file:
[dependencies]
function_cache = "0.1.0"
CachedFunction
instances can be created with the new
static method, which takes a closure.
The underlying value can be accessed with the value(arg)
method.
```rs let mut cachedfunction = CachedFunction::new(|x: i32| { thread::sleep(Duration::fromsecs(5)); x });
let notcached = cachedfunction.value(2); // returns 2, after 5 seconds let cached = cached_function.value(2); // returns 2, but much quicker! ```
Distributed under the MIT License. See LICENSE.md
for more information.