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 memoization of f using HashMap as cache.
f
HashMap