A Rust library for creating the memoization of a function.
Documentation: API reference
Add this to your Cargo.toml
:
toml
[dependencies]
fn-memo = "1.1"
By default fn-memo
includes synchronized APIs, which introduces related dependencies. If you have no need for synchronization and want to reduce depdendencies, use following configuration.
toml
[dependencies]
fn-memo = { version = "1.1", default-features = false }