Popularity
8.0
Growing
Activity
0.0
Stable
29
5
12

Monthly Downloads: 63
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Data    

memoize alternatives and similar packages

Based on the "Data" category.
Alternatively, view memoize alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of memoize or a related project?

Add another 'Data' Package

README

memoize

Build Status

This library provides a type class Memoizable for memoizing functions, along with instances for a variety of argument types. It includes a Template Haskell function for deriving Memoizable instances for arbitrary algebraic datatypes.

The library constructs pure memo caches without the use of unsafePerformIO. This technique relies on implementation assumptions that, while not guaranteed by the semantics of Haskell, appear to be true.