fn-memo 0.2.0

A library for creating the memoization of a function.
Documentation

FnMemo

A Rust library for creating the memoization of a function.

Documentation: API reference

Usage

Add this to your Cargo.toml:

[dependencies]
fn-memo = "0.2"

By default fn-memo includes synchronized APIs, which introduces some extra dependencies. To disable synchronization to reduce the depdendencies, use following configuration.

[dependencies]
fn-memo = { version = "0.2", default-features = false }