preliminaries 0.1.0.0 → 0.1.1.0
raw patch · 3 files changed
+8/−2 lines, 3 files
Files
- README.md +1/−0
- preliminaries.cabal +2/−1
- source/Preliminaries.hs +5/−1
README.md view
@@ -2,6 +2,7 @@ ============= [](https://travis-ci.org/kerscher/preliminaries)+[](https://hackage.haskell.org/package/preliminaries)  The Haskell Report specifies the [Prelude](https://www.haskell.org/onlinereport/standard-prelude.html) with a minimal amount of definitions that are always available in scope for application writers. Due to its simplicity and frugality, multiple alternatives and support libraries were devised to improve upon it, including:
preliminaries.cabal view
@@ -1,5 +1,5 @@ name: preliminaries-version: 0.1.0.0+version: 0.1.1.0 synopsis: A larger alternative to the Prelude. description: A GHC-only alternative to the Prelude with a large amount of imports available by default. homepage: http://github.com/kerscher/preliminaries@@ -56,6 +56,7 @@ , DeriveFoldable , DeriveTraversable , ConstraintKinds+ , ExplicitNamespaces exposed-modules: Preliminaries ghc-options: -Wall -fno-warn-unused-imports
source/Preliminaries.hs view
@@ -26,7 +26,7 @@ @ … default-extensions: NoImplicitPrelude-build-depends: preliminaries >= 0.1.0 < 2+build-depends: preliminaries >= 0.1.1 < 2 @ And on each file, add @import Preliminaries@.@@ -65,6 +65,8 @@ , module Data.Bifoldable , module Data.Bitraversable , module Data.MonoTraversable.Instances+ -- * Utilities+, type ($) ) where @@ -118,3 +120,5 @@ thru :: a -> Strategy a -> a x `thru` strat = x `Strategies.using` strat++type f $ x = f x