loops 0.1.0.0 → 0.1.0.1
raw patch · 4 files changed
+11/−5 lines, 4 filesdep ~base
Dependency ranges changed: base
Files
- README.lhs +2/−0
- README.md +2/−0
- loops.cabal +6/−4
- src/Control/Monad/Loop/ForEach.hs +1/−1
README.lhs view
@@ -1,6 +1,8 @@ loops ========== +[](https://travis-ci.org/ttuegel/loops)+ **Practical summary** Fast, imperative-style loops. Performance is robust because there is no reliance
README.md view
@@ -1,6 +1,8 @@ loops ========== +[](https://travis-ci.org/ttuegel/loops)+ **Practical summary** Fast, imperative-style loops. Performance is robust because there is no reliance
loops.cabal view
@@ -1,5 +1,5 @@ name: loops-version: 0.1.0.0+version: 0.1.0.1 synopsis: Fast imperative-style loops description: @loops@ is a library for fast, imperative-style loops in Haskell. Performance@@ -13,11 +13,13 @@ license-file: LICENSE author: Thomas Tuegel maintainer: ttuegel@gmail.com+bug-reports: https://github.com/ttuegel/loops/issues copyright: (c) Thomas Tuegel 2014 category: Control build-type: Simple extra-source-files: README.md, README.lhs cabal-version: >=1.10+tested-with: GHC == 7.6.3, GHC == 7.8.2 source-repository head type: git@@ -29,7 +31,7 @@ Control.Monad.Loop.ForEach Control.Monad.Loop.Internal build-depends:- base >=4.7 && <5,+ base >=4.6 && <5, primitive >=0.5 && <1, transformers >=0.3 && <1, vector >=0.10 && <1@@ -46,7 +48,7 @@ other-modules: Test.Sum build-depends:- base >=4.7 && <5,+ base >=4.6 && <5, loops, tasty >=0.8 && <1, tasty-quickcheck >=0.8 && <1@@ -62,7 +64,7 @@ other-modules: Bench.Sum build-depends:- base >=4.7 && <5,+ base >=4.6 && <5, criterion >=0.8 && <1, loops, transformers >=0.3 && <1,
src/Control/Monad/Loop/ForEach.hs view
@@ -4,7 +4,7 @@ module Control.Monad.Loop.ForEach where import Control.Monad (liftM)-import Control.Monad.Primitive (PrimMonad(PrimState))+import Control.Monad.Primitive (PrimMonad, PrimState) import Control.Monad.Trans.Class (lift) -- Import the vector package qualified to write the ForEach instances