{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE RankNTypes #-}
{-# LANGUAGE TypeFamilies #-}
{-# OPTIONS_GHC -fno-warn-orphans #-}
module Data.RAVec.Lens (
ix,
) where
import Control.Applicative ((<$>))
import Data.Bin.Pos (Pos (..))
import Prelude ()
import qualified Control.Lens as L
import qualified Data.RAVec.NonEmpty.Lens as NE
import Data.RAVec
ix :: Pos b -> L.Lens' (RAVec b a) a
ix :: forall (b :: Bin) a. Pos b -> Lens' (RAVec b a) a
ix (Pos PosP b1
n) a -> f a
f (NonEmpty NERAVec b1 a
x) = NERAVec b1 a -> RAVec b a
NERAVec b1 a -> RAVec ('BP b1) a
forall (b1 :: BinP) a. NERAVec b1 a -> RAVec ('BP b1) a
NonEmpty (NERAVec b1 a -> RAVec b a) -> f (NERAVec b1 a) -> f (RAVec b a)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> PosP b1 -> Lens' (NERAVec b1 a) a
forall (b :: BinP) a. PosP b -> Lens' (NERAVec b a) a
NE.ix PosP b1
n a -> f a
f NERAVec b1 a
NERAVec b1 a
x
instance L.Each (RAVec n a) (RAVec n b) a b where
each :: Traversal (RAVec n a) (RAVec n b) a b
each = (a -> f b) -> RAVec n a -> f (RAVec n b)
forall (f :: * -> *) a b (n :: Bin).
Applicative f =>
(a -> f b) -> RAVec n a -> f (RAVec n b)
traverse
type instance L.Index (RAVec n a) = Pos n
type instance L.IxValue (RAVec n a) = a
instance L.Ixed (RAVec b a) where
ix :: Index (RAVec b a) -> Traversal' (RAVec b a) (IxValue (RAVec b a))
ix Index (RAVec b a)
i = Pos b -> Lens' (RAVec b a) a
forall (b :: Bin) a. Pos b -> Lens' (RAVec b a) a
ix Pos b
Index (RAVec b a)
i