Skip to content

A Rust library for creating the memoization of a function.

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

Jason5Lee/rust-fn-memo

Repository files navigation

FnMemo

Build Status

A Rust library for creating the memoization of a function.

Documentation: API reference

Usage

Add the following dependency to your Cargo.toml:

[dependencies]
fn-memo = "1.2"

By default fn-memo includes synchronized APIs, which introduces related dependencies. If you only use the memoization in one thread and want to reduce dependencies, use following configuration.

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

About

A Rust library for creating the memoization of a function.

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published