lists-flines 0.1.0.1 → 0.1.1.0
raw patch · 3 files changed
+9/−1 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ Data.Lists.FLines: class GetTransL a b
+ Data.Lists.FLines: getTL :: GetTransL a b => (b -> b) -> a -> b
Files
- CHANGELOG.md +4/−0
- Data/Lists/FLines.hs +4/−0
- lists-flines.cabal +1/−1
CHANGELOG.md view
@@ -7,3 +7,7 @@ ## 0.1.0.1 -- 2020-10-05 * First version revised A. Fixed issue with the wrong import statements order.++## 0.1.1.0 -- 2020-10-05++* First version revised B. Added a new class definition.
Data/Lists/FLines.hs view
@@ -71,3 +71,7 @@ | compare n 1 == LT = Nothing | otherwise = getNT (n - 1) g (FL xss) getNT _ _ _ = Nothing++class GetTransL a b where+ getTL :: (b -> b) -> a -> b+
lists-flines.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: lists-flines-version: 0.1.0.1+version: 0.1.1.0 synopsis: Additional data and structures to some 'String'-related lists. description: Is primarily used to transform some Strings read from a file. homepage: https://hackage.haskell.org/package/lists-flines