{-# LANGUAGE TypeOperators, RankNTypes #-} module Data.Vector.Storable.Static where import qualified Data.Vector.Storable as V import qualified Data.Vector.Generic.Static as G import Data.Vector.Fusion.Stream import Data.Vector.Generic.New import Data.Nat import Data.Fin newtype Vec n a = Vec { unVec :: G.Vec n V.Vector a } length :: (V.Storable a) => Vec n a -> Nat n {-# INLINE length #-} length = G.length . unVec -- null empty :: V.Storable a => Vec Z a {-# INLINE empty #-} empty = Vec G.empty singleton :: V.Storable a => a -> Vec (S Z) a {-# INLINE singleton #-} singleton = Vec . G.singleton cons :: V.Storable a => a -> Vec n a -> Vec (S n) a {-# INLINE cons #-} cons x (Vec xs) = Vec (G.cons x xs) snoc :: V.Storable a => Vec n a -> a -> Vec (S n) a {-# INLINE snoc #-} snoc (Vec xs) x = Vec (G.snoc xs x) replicate :: (V.Storable a) => Nat n -> a -> Vec n a {-# INLINE replicate #-} replicate n = Vec . G.replicate n generate :: (V.Storable a) => Nat n -> (Fin n -> a) -> Vec n a {-# INLINE generate #-} generate n f = Vec (G.generate n f) (++) :: V.Storable a => Vec m a -> Vec n a -> Vec (m :+: n) a {-# INLINE (++) #-} Vec ms ++ Vec ns = Vec (ms G.++ ns) copy :: V.Storable a => Vec n a -> Vec n a {-# INLINE copy #-} copy (Vec vs) = Vec (G.copy vs) (!) :: V.Storable a => Vec n a -> Fin n -> a {-# INLINE (!) #-} Vec vs ! i = vs G.! i head :: V.Storable a => Vec (S n) a -> a {-# INLINE head #-} head (Vec vs) = G.head vs last :: V.Storable a => Vec (S n) a -> a {-# INLINE last #-} last (Vec vs) = G.last vs -- indexM -- headM -- lastM -- slice init :: V.Storable a => Vec (S n) a -> Vec n a {-# INLINE init #-} init (Vec vs) = Vec (G.init vs) tail :: V.Storable a => Vec (S n) a -> Vec n a {-# INLINE tail #-} tail (Vec vs) = Vec (G.tail vs) -- take -- drop -- accum -- accumulate -- accumulate_ -- (//) -- update -- update_ backpermute :: V.Storable a => Vec m a -> Vec n (Fin m) -> Vec n a {-# INLINE backpermute #-} backpermute (Vec vs) (Vec is) = Vec (G.backpermute vs is) reverse :: V.Storable a => Vec n a -> Vec n a {-# INLINE reverse #-} reverse (Vec vs) = Vec (G.reverse vs) map :: (V.Storable a, V.Storable b) => (a -> b) -> Vec n a -> Vec n b {-# INLINE map #-} map f (Vec vs) = Vec (G.map f vs) imap :: (V.Storable a, V.Storable b) => (Fin n -> a -> b) -> Vec n a -> Vec n b {-# INLINE imap #-} imap f (Vec vs) = Vec (G.imap f vs) concatMap :: (V.Storable a, V.Storable b) => (a -> Vec n b) -> Vec m a -> Vec (m :*: n) b {-# INLINE concatMap #-} concatMap f (Vec as) = Vec (G.concatMap (unVec . f) as) zipWith :: (V.Storable a, V.Storable b, V.Storable c) => (a -> b -> c) -> Vec n a -> Vec n b -> Vec n c {-# INLINE zipWith #-} zipWith f (Vec as) (Vec bs) = Vec (G.zipWith f as bs) zipWith3 :: (V.Storable a, V.Storable b, V.Storable c, V.Storable d) => (a -> b -> c -> d) -> Vec n a -> Vec n b -> Vec n c -> Vec n d {-# INLINE zipWith3 #-} zipWith3 f (Vec as) (Vec bs) (Vec cs) = Vec (G.zipWith3 f as bs cs) zipWith4 :: (V.Storable a, V.Storable b, V.Storable c, V.Storable d, V.Storable e) => (a -> b -> c -> d -> e) -> Vec n a -> Vec n b -> Vec n c -> Vec n d -> Vec n e {-# INLINE zipWith4 #-} zipWith4 f (Vec as) (Vec bs) (Vec cs) (Vec ds) = Vec (G.zipWith4 f as bs cs ds) zipWith5 :: (V.Storable a, V.Storable b, V.Storable c, V.Storable d, V.Storable e, V.Storable f) => (a -> b -> c -> d -> e -> f) -> Vec n a -> Vec n b -> Vec n c -> Vec n d -> Vec n e -> Vec n f {-# INLINE zipWith5 #-} zipWith5 f (Vec as) (Vec bs) (Vec cs) (Vec ds) (Vec es) = Vec (G.zipWith5 f as bs cs ds es) zipWith6 :: (V.Storable a, V.Storable b, V.Storable c, V.Storable d, V.Storable e, V.Storable f, V.Storable g) => (a -> b -> c -> d -> e -> f -> g) -> Vec n a -> Vec n b -> Vec n c -> Vec n d -> Vec n e -> Vec n f -> Vec n g {-# INLINE zipWith6 #-} zipWith6 f (Vec as) (Vec bs) (Vec cs) (Vec ds) (Vec es) (Vec fs) = Vec (G.zipWith6 f as bs cs ds es fs) izipWith :: (V.Storable a, V.Storable b, V.Storable c) => (Fin n -> a -> b -> c) -> Vec n a -> Vec n b -> Vec n c {-# INLINE izipWith #-} izipWith f (Vec as) (Vec bs) = Vec (G.izipWith f as bs) izipWith3 :: (V.Storable a, V.Storable b, V.Storable c, V.Storable d) => (Fin n -> a -> b -> c -> d) -> Vec n a -> Vec n b -> Vec n c -> Vec n d {-# INLINE izipWith3 #-} izipWith3 f (Vec as) (Vec bs) (Vec cs) = Vec (G.izipWith3 f as bs cs) izipWith4 :: (V.Storable a, V.Storable b, V.Storable c, V.Storable d, V.Storable e) => (Fin n -> a -> b -> c -> d -> e) -> Vec n a -> Vec n b -> Vec n c -> Vec n d -> Vec n e {-# INLINE izipWith4 #-} izipWith4 f (Vec as) (Vec bs) (Vec cs) (Vec ds) = Vec (G.izipWith4 f as bs cs ds) izipWith5 :: (V.Storable a, V.Storable b, V.Storable c, V.Storable d, V.Storable e, V.Storable f) => (Fin n -> a -> b -> c -> d -> e -> f) -> Vec n a -> Vec n b -> Vec n c -> Vec n d -> Vec n e -> Vec n f {-# INLINE izipWith5 #-} izipWith5 f (Vec as) (Vec bs) (Vec cs) (Vec ds) (Vec es) = Vec (G.izipWith5 f as bs cs ds es) izipWith6 :: (V.Storable a, V.Storable b, V.Storable c, V.Storable d, V.Storable e, V.Storable f, V.Storable g) => (Fin n -> a -> b -> c -> d -> e -> f -> g) -> Vec n a -> Vec n b -> Vec n c -> Vec n d -> Vec n e -> Vec n f -> Vec n g {-# INLINE izipWith6 #-} izipWith6 f (Vec as) (Vec bs) (Vec cs) (Vec ds) (Vec es) (Vec fs) = Vec (G.izipWith6 f as bs cs ds es fs) -- filter -- ifilter -- takeWhile -- dropWhile -- partition -- unstablePartition -- span -- break elem :: (V.Storable a, Eq a) => a -> Vec n a -> Bool {-# INLINE elem #-} elem x (Vec vs) = G.elem x vs notElem :: (V.Storable a, Eq a) => a -> Vec n a -> Bool {-# INLINE notElem #-} notElem x (Vec vs) = G.notElem x vs find :: (V.Storable a, Eq a) => (a -> Bool) -> Vec n a -> Maybe a {-# INLINE find #-} find p (Vec vs) = G.find p vs findIndex :: V.Storable a => (a -> Bool) -> Vec n a -> Maybe (Fin n) {-# INLINE findIndex #-} findIndex p (Vec vs) = G.findIndex p vs --findIndices :: V.Storable a => (a -> Bool) -> Vec n a -> Vec m (Fin n) --findIndices p (Vec vs) = Vec (G.findIndices p vs) elemIndex :: (V.Storable a, Eq a) => a -> Vec n a -> Maybe (Fin n) {-# INLINE elemIndex #-} elemIndex x (Vec vs) = G.elemIndex x vs --elemIndices :: (V.Storable a, Eq a) => a -> Vec n a -> Vec m (Fin n) --elemIndices x (Vec vs) = Vec (G.elemIndices x vs) foldl :: V.Storable b => (a -> b -> a) -> a -> Vec n b -> a {-# INLINE foldl #-} foldl f z (Vec vs) = G.foldl f z vs foldl1 :: V.Storable a => (a -> a -> a) -> Vec (S n) a -> a {-# INLINE foldl1 #-} foldl1 f (Vec vs) = G.foldl1 f vs foldl' :: V.Storable b => (a -> b -> a) -> a -> Vec n b -> a foldl' f z (Vec vs) = G.foldl' f z vs foldl1' :: V.Storable a => (a -> a -> a) -> Vec (S n) a -> a foldl1' f (Vec vs) = G.foldl1' f vs foldr :: V.Storable a => (a -> b -> b) -> b -> Vec n a -> b {-# INLINE foldr #-} foldr f z (Vec vs) = G.foldr f z vs foldr1 :: V.Storable a => (a -> a -> a) -> Vec (S n) a -> a {-# INLINE foldr1 #-} foldr1 f (Vec vs) = G.foldr1 f vs foldr' :: V.Storable a => (a -> b -> b) -> b -> Vec n a -> b foldr' f z (Vec vs) = G.foldr' f z vs foldr1' :: V.Storable a => (a -> a -> a) -> Vec (S n) a -> a foldr1' f (Vec vs) = G.foldr1' f vs ifoldl :: V.Storable b => (a -> Fin n -> b -> a) -> a -> Vec n b -> a {-# INLINE ifoldl #-} ifoldl f z (Vec vs) = G.ifoldl f z vs ifoldl' :: V.Storable b => (a -> Fin n -> b -> a) -> a -> Vec n b -> a ifoldl' f z (Vec vs) = G.ifoldl' f z vs ifoldr :: V.Storable a => (Fin n -> a -> b -> b) -> b -> Vec n a -> b {-# INLINE ifoldr #-} ifoldr f z (Vec vs) = G.ifoldr f z vs ifoldr' :: V.Storable a => (Fin n -> a -> b -> b) -> b -> Vec n a -> b ifoldr' f z (Vec vs) = G.ifoldr' f z vs all :: V.Storable a => (a -> Bool) -> Vec n a -> Bool {-# INLINE all #-} all p (Vec vs) = G.all p vs any :: V.Storable a => (a -> Bool) -> Vec n a -> Bool {-# INLINE any #-} any p (Vec vs) = G.any p vs and :: Vec n Bool -> Bool {-# INLINE and #-} and (Vec vs) = G.and vs or :: Vec n Bool -> Bool {-# INLINE or #-} or (Vec vs) = G.or vs sum :: (V.Storable a, Num a) => Vec n a -> a {-# INLINE sum #-} sum (Vec vs) = G.sum vs product :: (V.Storable a, Num a) => Vec n a -> a {-# INLINE product #-} product (Vec vs) = G.product vs minimum :: (V.Storable a, Ord a) => Vec (S n) a -> a {-# INLINE minimum #-} minimum (Vec vs) = G.minimum vs minimumBy :: V.Storable a => (a -> a -> Ordering) -> Vec (S n) a -> a {-# INLINE minimumBy #-} minimumBy c (Vec vs) = G.minimumBy c vs minIndex :: (V.Storable a, Ord a) => Vec (S n) a -> Fin (S n) {-# INLINE minIndex #-} minIndex (Vec vs) = G.minIndex vs minIndexBy :: V.Storable a => (a -> a -> Ordering) -> Vec (S n) a -> Fin (S n) {-# INLINE minIndexBy #-} minIndexBy c (Vec vs) = G.minIndexBy c vs maximum :: (V.Storable a, Ord a) => Vec (S n) a -> a {-# INLINE maximum #-} maximum (Vec vs) = G.maximum vs maximumBy :: V.Storable a => (a -> a -> Ordering) -> Vec (S n) a -> a {-# INLINE maximumBy #-} maximumBy c (Vec vs) = G.maximumBy c vs maxIndex :: (V.Storable a, Ord a) => Vec (S n) a -> Fin (S n) {-# INLINE maxIndex #-} maxIndex (Vec vs) = G.maxIndex vs maxIndexBy :: V.Storable a => (a -> a -> Ordering) -> Vec (S n) a -> Fin (S n) {-# INLINE maxIndexBy #-} maxIndexBy c (Vec vs) = G.maxIndexBy c vs unfoldr :: V.Storable a => (b -> Maybe (a, b)) -> b -> (forall n. Vec n a -> r) -> r {-# INLINE unfoldr #-} unfoldr f x c = G.unfoldr f x (c . Vec) -- prescanl -- prescanl' -- postscanl -- postscanl' -- scanl -- scanl' -- scanl1 -- scanl1' -- prescanr -- prescanr' -- postscanr -- postscanr' -- scanr -- scanr' -- scanr1 -- scanr1' enumFromN :: forall a n. (V.Storable a, Num a) => a -> Nat n -> Vec n a {-# INLINE enumFromN #-} enumFromN x n = Vec (G.enumFromN x n) enumFromStepN :: forall a n. (V.Storable a, Num a) => a -> a -> Nat n -> Vec n a {-# INLINE enumFromStepN #-} enumFromStepN x x1 n = Vec (G.enumFromStepN x x1 n) -- enumFromTo -- enumFromThenTo toList :: V.Storable a => Vec n a -> [a] {-# INLINE toList #-} toList (Vec vs) = G.toList vs fromList :: V.Storable a => [a] -> (forall n. Vec n a -> r) -> r {-# INLINE fromList #-} fromList xs f = G.fromList xs (f . Vec) stream :: V.Storable a => Vec n a -> Stream a {-# INLINE stream #-} stream (Vec vs) = G.stream vs unstream :: V.Storable a => Stream a -> (forall n. Vec n a -> r) -> r {-# INLINE unstream #-} unstream s f = G.unstream s (f . Vec) streamR :: V.Storable a => Vec n a -> Stream a {-# INLINE streamR #-} streamR (Vec vs) = G.streamR vs unstreamR :: V.Storable a => Stream a -> (forall n. Vec n a -> r) -> r {-# INLINE unstreamR #-} unstreamR s f = G.unstreamR s (f . Vec) new :: V.Storable a => New a -> (forall n. Vec n a -> r) -> r {-# INLINE new #-} new n f = G.new n (f . Vec) --allFin :: Nat n => Vec n (Fin n) --allFin = Vec G.allFin