CacheMap

CacheMap is a data structure for concurrently caching values.

The cache function will look up a value in the map, or generate and store a new one using the provided function.

This is a updated and maintained fork of hclarke/cachemap.

Example

``` use cachemap::CacheMap;

let m = CacheMap::new();

let fst = m.cache("key", || 5u32); let snd = m.cache("key", || 7u32);

asserteq!(*fst, *snd); asserteq!(*fst, 5u32); ```

Features

AntiFeatures