lists-flines 0.1.2.0 → 0.1.3.0
raw patch · 4 files changed
+18/−21 lines, 4 filesdep ~base
Dependency ranges changed: base
Files
- CHANGELOG.md +6/−0
- Data/Lists/FLines.hs +8/−17
- LICENSE +1/−1
- lists-flines.cabal +3/−3
CHANGELOG.md view
@@ -15,3 +15,9 @@ ## 0.1.2.0 -- 2022-03-24 * First version revised C. Updated the dependency boundaries to support the latest GHC and Cabal versions.++## 0.1.3.0 -- 2023-01-29++* First version revised D. Switched to NoImplicitPrelude extension. Updated the dependency+ boundaries.+
Data/Lists/FLines.hs view
@@ -1,32 +1,23 @@ -- | -- Module : Data.Lists.FLines--- Copyright : (c) OleksandrZhabenko 2020+-- Copyright : (c) OleksandrZhabenko 2020-2023 -- License : MIT -- Stability : Experimental--- Maintainer : olexandr543@yahoo.com+-- Maintainer : oleksandr.zhabenko@yahoo.com -- -- Additional data and structures to some 'String'-related lists. -- -{-# LANGUAGE CPP, FlexibleInstances, MultiParamTypeClasses #-}+{-# LANGUAGE CPP, FlexibleInstances, MultiParamTypeClasses, NoImplicitPrelude #-} module Data.Lists.FLines where -#ifdef __GLASGOW_HASKELL__-#if __GLASGOW_HASKELL__>=710-/* code that applies only to GHC 7.10.* and higher versions */-import GHC.Base (mconcat)-#endif-#endif+import GHC.Base+import Data.String+import Text.Show+import GHC.Num+import GHC.List (null) import System.IO--#ifdef __GLASGOW_HASKELL__-#if __GLASGOW_HASKELL__==708-/* code that applies only to GHC 7.8.* */-mconcat = concat-#endif-#endif- -- | Auxiliary printing function to define the line ending needed to be shown and printed. Is primarily defined in the @uniqueness-periods-vector-general@ package (https://hackage.haskell.org/package/uniqueness-periods-vector-general). newLineEnding :: String
LICENSE view
@@ -1,4 +1,4 @@-Copyright (c) 2020 OleksandrZhabenko+Copyright (c) 2020-2023 OleksandrZhabenko Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the
lists-flines.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: lists-flines-version: 0.1.2.0+version: 0.1.3.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@@ -19,7 +19,7 @@ library exposed-modules: Data.Lists.FLines -- other-modules:- other-extensions: CPP, FlexibleInstances, MultiParamTypeClasses- build-depends: base >=4.7 && <5+ other-extensions: CPP, FlexibleInstances, MultiParamTypeClasses, NoImplicitPrelude+ build-depends: base >=4.13 && <5 -- hs-source-dirs: default-language: Haskell2010