packages feed

vector-sized 1.0.1.0 → 1.0.2.0

raw patch · 6 files changed

+14/−7 lines, 6 filesdep ~indexed-list-literals

Dependency ranges changed: indexed-list-literals

Files

changelog.md view
@@ -1,5 +1,10 @@ # Change Log +## [1.0.2.0] - 2018-05-15++- `not-home` haddock annotations for Internal modules, for more helpful linking+- Fix build with indexed-list-literals-0.2.1.0+ ## [1.0.1.0] - 2018-04-12  - Add Representable and Distributive instances for sized boxed vectors
src/Data/Vector/Generic/Mutable/Sized/Internal.hs view
@@ -1,8 +1,9 @@-{-# LANGUAGE DataKinds #-}-{-# LANGUAGE DeriveDataTypeable #-}-{-# LANGUAGE DeriveGeneric #-}+{-# LANGUAGE DataKinds                  #-}+{-# LANGUAGE DeriveDataTypeable         #-}+{-# LANGUAGE DeriveGeneric              #-} {-# LANGUAGE GeneralizedNewtypeDeriving #-}-{-# LANGUAGE KindSignatures #-}+{-# LANGUAGE KindSignatures             #-}+{-# OPTIONS_HADDOCK not-home            #-}  module Data.Vector.Generic.Mutable.Sized.Internal   ( MVector(..)
src/Data/Vector/Generic/Sized.hs view
@@ -274,7 +274,7 @@                scanr, scanr1, mapM, mapM_, sequence, sequence_)  -import Data.IndexedListLiterals hiding (toList)+import Data.IndexedListLiterals hiding (toList, fromList) import qualified Data.IndexedListLiterals as ILL  instance (KnownNat n, VG.Vector v a, Read (v a)) => Read (Vector v n a) where
src/Data/Vector/Generic/Sized/Internal.hs view
@@ -4,6 +4,7 @@ {-# LANGUAGE DeriveTraversable          #-} {-# LANGUAGE GeneralizedNewtypeDeriving #-} {-# LANGUAGE KindSignatures             #-}+{-# OPTIONS_HADDOCK not-home            #-}  module Data.Vector.Generic.Sized.Internal   ( Vector(..)
src/Data/Vector/Sized.hs view
@@ -238,7 +238,7 @@ import GHC.TypeLits import Data.Finite import Data.Proxy-import Data.IndexedListLiterals hiding (toList)+import Data.IndexedListLiterals hiding (toList, fromList) import Control.Monad.Primitive import Prelude hiding ( length, null,                         replicate, (++), concat,
vector-sized.cabal view
@@ -1,5 +1,5 @@ name:                vector-sized-version:             1.0.1.0+version:             1.0.2.0 synopsis:            Size tagged vectors description:         Please see README.md homepage:            http://github.com/expipiplus1/vector-sized#readme