All Versions
5
Latest Version
Avg Release Cycle
128 days
Latest Release
3294 days ago
Changelog History
Changelog History
-
v0.11.0.0 Changes
January 09, 2016- 🆕 New function application combinators (new):
inbetween :: a -> b -> (a -> b -> r) -> r
(~$~) :: a -> b -> (a -> b -> r) -> r
(~$$~) :: b -> a -> (a -> b -> r) -> r
withIn :: ((a -> b -> r) -> r) -> (a -> b -> r) -> r
withReIn :: ((b -> a -> r) -> r) -> (a -> b -> r) -> r
- 🆕 Precursors to
Iso
,Lens
andPrism
(new):type PreIso r s t a b = ((b -> t) -> (s -> a) -> r) -> r
type PreIso' r s a = PreIso r s s a a
type PreLens r s t a b = ((b -> s -> t) -> (s -> a) -> r) -> r
type PreLens' r s a = PreLens r s s a a
type PrePrism r s t a b = ((b -> t) -> (s -> Either t a) -> r) -> r
type PrePrism' r s a = PrePrism r s s a a
- 📦 Uploaded to Hackage: http://hackage.haskell.org/package/between-0.11.0.0
- 🆕 New function application combinators (new):
-
v0.10.0.0 Changes
June 13, 2015- 🚚 Original implementation moved to module
Data.Function.Between.Lazy
and is now reexported byData.Function.Between
. (new) - Implementation of strict variants of all functions defined in
Data.Function.Between.Lazy
module. These new functions use(f . g) x = f '$!' g '$!' x
as definition for function composition where$!
is strict application. (new) - 📦 Uploaded to Hackage: http://hackage.haskell.org/package/between-0.10.0.0
- 🚚 Original implementation moved to module
-
v0.9.0.2 Changes
August 30, 2014- 📚 Minor documentation changes.
- 📚 Resolving some Haddock issues in documentation.
- Uploaded to [Hackage][]: http://hackage.haskell.org/package/between-0.9.0.2
-
v0.9.0.1 Changes
August 18, 2014- ✅ Removing all INLINE and RULES. Tested it using [ghc-core][] with GHC 7.8.3 (bundled with [Haskell Platform][] 2014.2.0.0) and it works well.
- Uploaded to [Hackage][]: http://hackage.haskell.org/package/between-0.9.0.1
-
v0.9.0.0 Changes
August 14, 2014- 🚀 First public release.
- Uploaded to Hackage: http://hackage.haskell.org/package/between-0.9.0.0