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
|
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
| ||||
|
feedback
|
|
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:
| |||||
feedback
|
|
You should be able to memoize a pair. The two arg function calls a single arg function that you memoize. | |||
|
feedback
|
|
Wes has another post where he gives a two (or more) argument version of Memoize. It does not require a custom comparer. | |||
feedback
|
|
With new versions of .NET you can simplify the accepted solution's code a bit by using tuples
| |||
|
feedback
|
|
I also did some work on memoization in C#. My results are similar but use a dictionary key derived from the concatenation of the input object hash codes. The pattern can be extended to as many intputs as Func<> will allow. Se more here: http://bit.ly/t6iNJP | |||
|
feedback
|