fixed-vector 1.2.1.0 → 1.2.1.1
raw patch · 4 files changed
+12/−8 lines, 4 filesdep ~basePVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: base
API changes (from Hackage documentation)
- Data.Vector.Fixed.Unboxed: instance forall k (n :: GHC.Types.Nat) a (b :: k). Data.Vector.Fixed.Unboxed.Unbox n a => Data.Vector.Fixed.Mutable.IVector (Data.Vector.Fixed.Unboxed.Vec n) (Data.Functor.Const.Const a b)
- Data.Vector.Fixed.Unboxed: instance forall k (n :: GHC.Types.Nat) a (b :: k). Data.Vector.Fixed.Unboxed.Unbox n a => Data.Vector.Fixed.Mutable.MVector (Data.Vector.Fixed.Unboxed.MVec n) (Data.Functor.Const.Const a b)
- Data.Vector.Fixed.Unboxed: instance forall k (n :: GHC.Types.Nat) a (b :: k). Data.Vector.Fixed.Unboxed.Unbox n a => Data.Vector.Fixed.Unboxed.Unbox n (Data.Functor.Const.Const a b)
+ Data.Vector.Fixed.Unboxed: instance forall k (n :: GHC.TypeNats.Nat) a (b :: k). Data.Vector.Fixed.Unboxed.Unbox n a => Data.Vector.Fixed.Mutable.IVector (Data.Vector.Fixed.Unboxed.Vec n) (Data.Functor.Const.Const a b)
+ Data.Vector.Fixed.Unboxed: instance forall k (n :: GHC.TypeNats.Nat) a (b :: k). Data.Vector.Fixed.Unboxed.Unbox n a => Data.Vector.Fixed.Mutable.MVector (Data.Vector.Fixed.Unboxed.MVec n) (Data.Functor.Const.Const a b)
+ Data.Vector.Fixed.Unboxed: instance forall k (n :: GHC.TypeNats.Nat) a (b :: k). Data.Vector.Fixed.Unboxed.Unbox n a => Data.Vector.Fixed.Unboxed.Unbox n (Data.Functor.Const.Const a b)
Files
- ChangeLog.md +5/−0
- Data/Vector/Fixed.hs +1/−1
- Data/Vector/Fixed/Cont.hs +1/−1
- fixed-vector.cabal +5/−6
ChangeLog.md view
@@ -1,3 +1,8 @@+Changes in 1.2.1.1++ * Fixed bug in `any` (#18)++ Changes in 1.2.1.0 * Support for GHC7.10 dropped.
Data/Vector/Fixed.hs view
@@ -284,7 +284,7 @@ traverse = traverse instance (Arity n, Monoid a) => Monoid (VecList n a) where mempty = replicate mempty- mappend = zipWith mappend+ mappend = (<>) {-# INLINE mempty #-} {-# INLINE mappend #-}
Data/Vector/Fixed/Cont.hs view
@@ -1024,7 +1024,7 @@ -- | Determines whether any of element of vector satisfy predicate. any :: Arity n => (a -> Bool) -> ContVec n a -> Bool-any f = foldr (\x b -> f x || b) True+any f = foldr (\x b -> f x || b) False {-# INLINE any #-} -- | The 'find' function takes a predicate and a vector and returns
fixed-vector.cabal view
@@ -1,5 +1,5 @@ Name: fixed-vector-Version: 1.2.1.0+Version: 1.2.1.1 Synopsis: Generic vectors with statically known size. Description: Generic library for vectors with statically known@@ -54,14 +54,13 @@ ChangeLog.md tested-with:- GHC ==8.0.2- || ==8.2.2- || ==8.4.4+ GHC ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.1- || ==9.2.1+ || ==9.2.3+ || ==9.4.1 source-repository head type: git@@ -70,7 +69,7 @@ Library Ghc-options: -Wall Default-Language: Haskell2010- Build-Depends: base >=4.9 && <5+ Build-Depends: base >=4.11 && <5 , primitive >=0.6.2 , deepseq Exposed-modules: