Helper class for functions that take 3 arguments
Static methods
staticmemoize<T1, T2, T3, TOut> (callback:T1 ‑> T2 ‑> T3 ‑> TOut, ?resolver:T1 ‑> T2 ‑> T3 ‑> String):T1 ‑> T2 ‑> T3 ‑> TOut
memoize wraps callback and calls it only once storing the result for future needs.
Computed results are stored in an internal map. The keys to this map are generated by the resolver function that by default directly converts the arguments into a string.
staticinline negate<T1, T2, T3> (callback:T1 ‑> T2 ‑> T3 ‑> Bool):T1 ‑> T2 ‑> T3 ‑> Bool
Wraps callback in a function that negates its results.