You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Although, for many types, there is more than one possible way to implement a Memo function, users may know a preferred way to memoize their own types. For them, it would be convenient to pick the Memo function using overloading rather than passing it around explicitly. (I am such a user.)
Would you accept a patch that adds:
class Memoizable a where
memo :: Memo a
?
The text was updated successfully, but these errors were encountered:
Although, for many types, there is more than one possible way to implement a
Memo
function, users may know a preferred way to memoize their own types. For them, it would be convenient to pick theMemo
function using overloading rather than passing it around explicitly. (I am such a user.)Would you accept a patch that adds:
?
The text was updated successfully, but these errors were encountered: