packages feed

fixed-length 0.0 → 0.0.0.1

raw patch · 2 files changed

+8/−3 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

fixed-length.cabal view
@@ -1,5 +1,5 @@ Name:             fixed-length-Version:          0.0+Version:          0.0.0.1 License:          BSD3 License-File:     LICENSE Author:           Henning Thielemann <haskell@henning-thielemann.de>@@ -25,7 +25,7 @@ Build-Type:       Simple  Source-Repository this-  Tag:         0.0+  Tag:         0.0.0.1   Type:        darcs   Location:    http://code.haskell.org/~thielema/fixed-length/ 
src/Data/FixedLength.hs view
@@ -25,7 +25,12 @@ import Data.Foldable (Foldable, foldMap) import Data.Word (Word) -import Prelude hiding (map, zipWith, repeat)+import Data.Function (($), (.))+import Data.Bool (Bool(False, True))+import Data.Ord (Ord, Ordering(LT,EQ,GT), compare)+import Data.Eq (Eq, (==))++import Prelude (Functor, fmap, Show, (+), error)   class (list ~ List (Position list)) => C list where