level-monad 0.2.1 → 0.2.2
raw patch · 2 files changed
+3/−1 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Control/Monad/Levels.hs +2/−0
- level-monad.cabal +1/−1
Control/Monad/Levels.hs view
@@ -67,6 +67,8 @@ Levels x >>= f = Levels (x `bind` (levels . f)) + fail _ = Levels []+ bind :: [[a]] -> (a -> [[b]]) -> [[b]] bind x f = map concat (diagonals (map (foldr zipConc [] . map f) x))
level-monad.cabal view
@@ -1,5 +1,5 @@ Name: level-monad-Version: 0.2.1+Version: 0.2.2 Cabal-Version: >= 1.6 Synopsis: Non-Determinism Monad for Level-Wise Search Description: This Haskell library provides an implementation of the