fn-memo

Crates.iofn-memo
lib.rsfn-memo
version1.2.0
sourcesrc
created_at2019-01-27 14:00:06.680429
updated_at2019-08-15 03:04:37.444032
descriptionA library for creating the memoization of a function.
homepagehttps://crates.io/crates/fn-memo
repositoryhttps://github.com/Jason5Lee/rust-fn-memo
max_upload_size
id110929
size42,909
Jason Dongheng Lee (Jason5Lee)

documentation

README

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 }
Commit count: 13

cargo fmt