, take
, drop
, select
--- , group
, (<+)
, (++)
, map
| otherwise = []
selectFirst0 _ 0 [] = []
--- group :: PositiveT n => n -> TFVec s a -> TFVec (Div s n) (TFVec n a)
--- group n = liftV (group' (fromIntegerT n))
--- where group' :: Int -> [a] -> [TFVec s a]
--- group' n xs = case splitAtM n xs of
--- Nothing -> []
--- Just (ls, rs) -> TFVec ls : group' n rs
-
(<+) :: TFVec s a -> a -> TFVec (Succ s) a
(<+) (TFVec xs) x = TFVec (xs P.++ [x])
TFVec s a -> a -> TFVec s a
shiftr xs x = tail xs <+ x
-rotl :: (PositiveT s, s ~ Succ (Pred s)) => TFVec s a -> TFVec s a
-rotl xs = last xs +> init xs
-
-rotr :: (PositiveT s, s ~ Succ (Pred s)) => TFVec s a -> TFVec s a
-rotr xs = tail xs <+ head xs
+rotl :: forall s a . NaturalT s => TFVec s a -> TFVec s a
+rotl = liftV rotl'
+ where vlen = fromIntegerT (undefined :: s)
+ rotl' [] = []
+ rotl' xs = let (i,[l]) = splitAt (vlen - 1) xs
+ in l : i
+
+rotr :: NaturalT s => TFVec s a -> TFVec s a
+rotr = liftV rotr'
+ where
+ rotr' [] = []
+ rotr' (x:xs) = xs P.++ [x]
concat :: TFVec s1 (TFVec s2 a) -> TFVec (s1 :*: s2) a
concat = liftV (P.foldr ((P.++).unTFVec) [])
name: tfvec
-version: 0.1.1
+version: 0.1.2
synopsis: Fixed sized vectors.
description: Vectors with numerically parameterized size, using
type-level numerals from 'tfp' library