Simple function memoization
This commit is contained in:
parent
b2b630368c
commit
967e1e3266
|
@ -1,4 +1,5 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
public static class Func {
|
||||
|
@ -26,4 +27,17 @@ public static class Func {
|
|||
public static Func<A,Func<B,Func<C,D>>> Curry<A,B,C,D>(this Func<A,B,C,D> f) {
|
||||
return a => b => c => f(a, b, c);
|
||||
}
|
||||
|
||||
public static Func<A, B> Memoize<A, B>(this Func<A, B> f) where A : IEquatable<A> {
|
||||
var d = new Dictionary<A, B>();
|
||||
return a => {
|
||||
if (d.TryGetValue(a, out var b)) {
|
||||
return b;
|
||||
} else {
|
||||
var calcB = f(a);
|
||||
d.Add(a, calcB);
|
||||
return calcB;
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user