Tagged Questions
29
votes
3answers
992 views
When is memoization automatic in GHC Haskell?
I can't figure out why m1 is apparently memoized while m2 is not in the following:
m1 = ((filter odd [1..]) !!)
m2 n = ((filter odd [1..]) !! n)
m1 10000000 takes about 1.5 seconds on the ...
15
votes
5answers
2k views
How do you make a generic memoize function in Haskell?
I've seen the other post about this, but is there a clean way of doing this in Haskell?
As a 2nd part, can it also be done without making the function monadic?