All Versions
8
Latest Version
Avg Release Cycle
495 days
Latest Release
1608 days ago
Changelog History
Changelog History
-
v0.5.3 Changes
September 21, 2020๐ Fixed
README.md
links ### โ Removed- ๐ Travis-ci build configuration
-
v0.5.2 Changes
September 20, 2020โ Added
- โ CI on Github actions with test coverage and Hackage upload ### ๐ Fixed
- โ
monad-memo.cabal
structure: redundancy and to enable test coverage calculation CHANGELOG.md
structure
-
v0.5.1 Changes
August 31, 2018โ Added
- ๐ Support multiple mutable caches in transformers stack This allows Array/Vector-based caches to be used for mutually recursive function memoization
-
v0.5.0 Changes
August 06, 2018๐ Fixed
- โ Refresh project to be compilable with latest GHC and libraries
- โ Remove dependency on
mtl
package (transformers
is sufficient) - ๐ Use
Except
instead of deprecatedError
- โ Remove support for
ListT
transformer since it is now deprecated - ๐ Use standard
StateT
&ReaderT
forMonadCache
implementations
-
v0.4.1 Changes
March 06, 2013๐ Fixed
- ๐ Documentation
- ๐ฆ
Example
is renamed toexample
and is excluded from package's module hierarchy
-
v0.4.0 Changes
February 26, 2013โ Added
- ๐
ArrayCache
: mutable array-basedMonadCache
for top performance - ๐
VectorCache
(and flavours)vector
-basedMonadCache
for even better performance - Simple benchmark included ### ๐ Fixed
- ๐ Bug fixes in transformer implementations (
Reader
,State
,RWS
)
- ๐
-
v0.3.0 Changes
April 03, 2011โ Added
- โ Added generalized
MemoStateT
transformer (to host anyData.MapLike
cache-container) MemoT
is nowMemoStateT
instantiated withData.Map
- โ Added generalized
-
v0.2.0 Changes
March 27, 2011โ Added
- A set of
forX
functions (for2
,for3
andfor4
) to adapt curried function into uncurriedMemoCache
- A set of