In C# how do I memoize a function with two arguments?
Do I have to curry before memoization?
Wes Dyer wrote the Memoization code I typically use, but now I need two arguments
|
1
|
In C# how do I memoize a function with two arguments? Do I have to curry before memoization? Wes Dyer wrote the Memoization code I typically use, but now I need two arguments
|
|||
|
|
|
|
You just make an overloaded version of the Memoize method that has three generic types and takes a function with two parameters, and the two arguments. It still returns a parameterless function:
Edit:
|
|||
|
|
Wes has another post where he gives a two (or more) argument version of Memoize. It does not require a custom comparer. |
||
|
|
|
You should be able to memoize a pair. The two arg function calls a single arg function that you memoize. |
||
|
|