ListLike 3.1.4 → 3.1.5
raw patch · 2 files changed
+4/−4 lines, 2 filesdep ~containersPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: containers
API changes (from Hackage documentation)
Files
- ListLike.cabal +2/−2
- src/Data/ListLike.hs +2/−2
ListLike.cabal view
@@ -1,5 +1,5 @@ Name: ListLike-Version: 3.1.4+Version: 3.1.5 License: BSD3 Maintainer: John Lato <jwlato@gmail.com> Author: John Goerzen@@ -35,7 +35,7 @@ Data.ListLike.Utils -- Other-Modules: Data.ConfigFile.Lexer Build-Depends: base >= 3 && < 5- ,containers >= 0.3 && < 0.5+ ,containers >= 0.3 && < 0.6 ,bytestring >= 0.9.1 && < 0.10 ,array >= 0.3 && < 0.5
src/Data/ListLike.hs view
@@ -140,14 +140,14 @@ same names, too. Therefore, you'll want to be careful how you import the module. I suggest using: ->import qualified ListLike as LL+>import qualified Data.ListLike as LL Then, you can use LL.fold, LL.map, etc. to get the generic version of the functions you want. Alternatively, you can hide the other versions from Prelude and import specific generic functions from here, such as: >import Prelude hiding (map)->import ListLike (map)+>import Data.ListLike (map) The module "Data.ListLike" actually simply re-exports the items found in a number of its sub-modules. If you want a smaller subset of