after_.after(count, function) Creates a version of the function that will only be run after first being called count times
wrap_.wrap(function, wrapper) Wraps the first function inside of the wrapper function, passing it as the first argument
negate_.negate(predicate) Returns a new negated version of the predicate function.
memoize_.memoize(function, [hashFunction]) Memoizes a given function by caching the computed result. Useful for speeding up
Page 2 of 2