Functionsยง
- memoize
- Creates a synchronized memoization of
f
usingHashMap
withRwLock
as cache. - memoize_
seq - Creates a synchronized memoization of the sequence
f
usingVec
withRwLock
as cache.
f
using HashMap
with RwLock
as cache.f
using Vec
with RwLock
as cache.