{-# LANGUAGE PackageImports #-}
{-# LANGUAGE TypeInType #-}
{-# LANGUAGE PartialTypeSignatures #-}
{-# LANGUAGE AllowAmbiguousTypes #-}
{-# LANGUAGE ConstraintKinds #-}
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE FunctionalDependencies #-}
{-# LANGUAGE KindSignatures #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE PolyKinds #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE TypeApplications #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE TypeOperators #-}
{-# LANGUAGE UndecidableInstances #-}
module Data.Generics.Product.Positions
(
HasPosition (..)
, HasPosition' (..)
, HasPosition_ (..)
, HasPosition0 (..)
, getPosition
, setPosition
) where
import "this" Data.Generics.Internal.Optics
import "generic-lens-core" Data.Generics.Internal.Void
import qualified "generic-lens-core" Data.Generics.Product.Internal.Positions as Core
import GHC.TypeLits (Nat)
class HasPosition (i :: Nat) s t a b | s i -> a, t i -> b, s i b -> t, t i a -> s where
position :: Lens s t a b
class HasPosition_ (i :: Nat) s t a b where
position_ :: Lens s t a b
class HasPosition' (i :: Nat) s a | s i -> a where
position' :: Lens s s a a
class HasPosition0 (i :: Nat) s t a b where
position0 :: Lens s t a b
getPosition :: forall i s a. HasPosition' i s a => s -> a
getPosition :: s -> a
getPosition s
s = s
s s -> Optic' A_Lens NoIx s a -> a
forall (k :: OpticKind) (s :: OpticKind) (is :: IxList)
(a :: OpticKind).
Is k A_Getter =>
s -> Optic' k is s a -> a
^. forall (s :: OpticKind) (a :: OpticKind).
HasPosition' i s a =>
Lens s s a a
forall (i :: Nat) (s :: OpticKind) (a :: OpticKind).
HasPosition' i s a =>
Lens s s a a
position' @i
setPosition :: forall i s a. HasPosition' i s a => a -> s -> s
setPosition :: a -> s -> s
setPosition = Optic A_Lens NoIx s s a a -> a -> s -> s
forall (k :: OpticKind) (is :: IxList) (s :: OpticKind)
(t :: OpticKind) (a :: OpticKind) (b :: OpticKind).
Is k A_Setter =>
Optic k is s t a b -> b -> s -> t
set (forall (s :: OpticKind) (a :: OpticKind).
HasPosition' i s a =>
Lens s s a a
forall (i :: Nat) (s :: OpticKind) (a :: OpticKind).
HasPosition' i s a =>
Lens s s a a
position' @i)
instance Core.Context' i s a => HasPosition' i s a where
position' :: Lens s s a a
position' = (forall (p :: OpticKind -> OpticKind -> OpticKind -> OpticKind)
(i :: OpticKind).
Profunctor p =>
Optic_ A_Lens p i (Curry NoIx i) s s a a)
-> Lens s s a a
forall (k :: OpticKind) (is :: IxList) (s :: OpticKind)
(t :: OpticKind) (a :: OpticKind) (b :: OpticKind).
(forall (p :: OpticKind -> OpticKind -> OpticKind -> OpticKind)
(i :: OpticKind).
Profunctor p =>
Optic_ k p i (Curry is i) s t a b)
-> Optic k is s t a b
Optic (forall (s :: OpticKind) (a :: OpticKind).
Context' i s a =>
Lens s s a a
forall (i :: Nat) (s :: OpticKind) (a :: OpticKind).
Context' i s a =>
Lens s s a a
Core.derived' @i)
{-# INLINE position' #-}
instance (Core.Context i s t a b , HasPosition0 i s t a b) => HasPosition i s t a b where
position :: Lens s t a b
position = forall (s :: OpticKind) (t :: OpticKind) (a :: OpticKind)
(b :: OpticKind).
HasPosition0 i s t a b =>
Lens s t a b
forall (i :: Nat) (s :: OpticKind) (t :: OpticKind)
(a :: OpticKind) (b :: OpticKind).
HasPosition0 i s t a b =>
Lens s t a b
position0 @i
{-# INLINE position #-}
instance {-# OVERLAPPING #-} HasPosition f (Void1 a) (Void1 b) a b where
position :: Lens (Void1 a) (Void1 b) a b
position = Lens (Void1 a) (Void1 b) a b
forall a. HasCallStack => a
undefined
instance (Core.Context_ i s t a b, HasPosition0 i s t a b) => HasPosition_ i s t a b where
position_ :: Lens s t a b
position_ = forall (s :: OpticKind) (t :: OpticKind) (a :: OpticKind)
(b :: OpticKind).
HasPosition0 i s t a b =>
Lens s t a b
forall (i :: Nat) (s :: OpticKind) (t :: OpticKind)
(a :: OpticKind) (b :: OpticKind).
HasPosition0 i s t a b =>
Lens s t a b
position0 @i
{-# INLINE position_ #-}
instance {-# OVERLAPPING #-} HasPosition_ f (Void1 a) (Void1 b) a b where
position_ :: Lens (Void1 a) (Void1 b) a b
position_ = Lens (Void1 a) (Void1 b) a b
forall a. HasCallStack => a
undefined
instance Core.Context0 i s t a b => HasPosition0 i s t a b where
position0 :: Lens s t a b
position0 = Lens s t a b -> Lens s t a b
forall (s :: OpticKind) (t :: OpticKind) (a :: OpticKind)
(b :: OpticKind).
Lens s t a b -> Lens s t a b
normaliseLens ((forall (p :: OpticKind -> OpticKind -> OpticKind -> OpticKind)
(i :: OpticKind).
Profunctor p =>
Optic_ A_Lens p i (Curry NoIx i) s t a b)
-> Lens s t a b
forall (k :: OpticKind) (is :: IxList) (s :: OpticKind)
(t :: OpticKind) (a :: OpticKind) (b :: OpticKind).
(forall (p :: OpticKind -> OpticKind -> OpticKind -> OpticKind)
(i :: OpticKind).
Profunctor p =>
Optic_ k p i (Curry is i) s t a b)
-> Optic k is s t a b
Optic (forall (s :: OpticKind) (t :: OpticKind) (a :: OpticKind)
(b :: OpticKind).
Context0 i s t a b =>
Lens s t a b
forall (i :: Nat) (s :: OpticKind) (t :: OpticKind)
(a :: OpticKind) (b :: OpticKind).
Context0 i s t a b =>
Lens s t a b
Core.derived0 @i))
{-# INLINE position0 #-}