FAKE - F# Make


CacheHelper

Contains functions which allows to deal with a cache.

Functions and values

Function or valueDescription
lookup key newValueF cache
Signature: key:'?12628 -> newValueF:(unit -> '?12629) -> cache:IDictionary<'?12628,'?12629> -> '?12629
Type parameters: '?12628, '?12629

Looks for a key in the cache. If it is not found the newValueF function is executed and the result is stored in the cache.

Fork me on GitHub