#cache #fn

cached_fn

Cache a function's result in a map

1 unstable release

0.1.1 Oct 17, 2024
0.1.0 Oct 17, 2024

#237 in Caching

MIT/Apache

7KB
55 lines

Cache a function's result in a map.

Example

let mut cached_sqr = cached(|x| x * x);
assert_eq!(cached_sqr(3), 9);

Cached Fn

Cache a function's result in a map.

Example

let mut cached_sqr = cached(|x| x * x);
assert_eq!(cached_sqr(3), 9);

Dependencies

~26KB