[][src]Function fn_memo::sync::chashmap::memoize

pub fn memoize<Arg, Output, F>(
    f: F
) -> impl FnMemo<Arg, Output> where
    Arg: Clone + Eq + Hash,
    Output: Clone,
    F: RecurFn<Arg, Output>, 

Creates a synchronized memoization of f using CHashMap as cache.