fn-memo 0.1.0

A library for creating the memoization of a function.
Documentation
# FnMemo

A Rust library for creating the memoization of a function.

Currently FnMemo only provides the memoization that uses a RwLock of HashMap as the cache.

Documentation: [API reference](https://docs.rs/fn-memo)

## Usage

Add this to your `Cargo.toml`:

```rust
[dependencies]
fn-memo = "0.1.0"
```