vector-instances 0.0.1 → 0.0.2
raw patch · 4 files changed
+5/−10 lines, 4 filesdep ~vectorsetup-changed
Dependency ranges changed: vector
Files
- Data/Vector/Instances.hs +0/−6
- Setup.hs +0/−2
- Setup.lhs +3/−0
- vector-instances.cabal +2/−2
Data/Vector/Instances.hs view
@@ -41,12 +41,6 @@ mplus = (++) {-# INLINE mplus #-} -instance Monoid (Vector a) where- mempty = Vector.empty- {-# INLINE mempty #-}- mappend = (++)- {-# INLINE mappend #-}- instance Applicative Vector where pure = Vector.singleton {-# INLINE pure #-}
− Setup.hs
@@ -1,2 +0,0 @@-import Distribution.Simple-main = defaultMain
+ Setup.lhs view
@@ -0,0 +1,3 @@+#!/usr/bin/env runhaskell+> import Distribution.Simple+> main = defaultMainWithHooks simpleUserHooks
vector-instances.cabal view
@@ -1,5 +1,5 @@ Name: vector-instances-Version: 0.0.1+Version: 0.0.2 Synopsis: Orphan Instances for 'Data.Vector' Homepage: http://patch-tag.com/r/ekmett/vector-instances License: BSD3@@ -15,4 +15,4 @@ Build-depends: base >= 4 && < 5,- vector >= 0.6.0.1 && < 7+ vector >= 0.7.1 && < 8