{-# language AllowAmbiguousTypes #-}
{-# language ConstraintKinds #-}
{-# language DataKinds #-}
{-# language GADTs #-}
{-# language ImpredicativeTypes #-}
{-# language PolyKinds #-}
{-# language ScopedTypeVariables #-}
{-# language TypeApplications #-}
{-# language TypeFamilies #-}
{-# language TypeOperators #-}
{-# language UndecidableInstances #-}
module Data.PolyKinded.Atom (
Atom(..), (:$:), (:~:), (:~~:)
, TyVar(..)
, Var0, Var1, Var2, Var3, Var4, Var5, Var6, Var7, Var8, Var9
, Interpret, InterpretVar, Satisfies, ContainsTyVar
, ForAllI(..), SuchThatI(..)
, WrappedI(..), toWrappedI, fromWrappedI
) where
import Data.Kind
import Data.PolyKinded
import GHC.Exts
import Fcf.Core (Exp, Eval)
data TyVar (d :: Type) (k :: TYPE r) where
VZ :: TyVar (x -> xs) x
VS :: TyVar xs k -> TyVar (x -> xs) k
type Var0 = 'Var 'VZ
type Var1 = 'Var ('VS 'VZ)
type Var2 = 'Var ('VS ('VS 'VZ))
type Var3 = 'Var ('VS ('VS ('VS 'VZ)))
type Var4 = 'Var ('VS ('VS ('VS ('VS 'VZ))))
type Var5 = 'Var ('VS ('VS ('VS ('VS ('VS 'VZ)))))
type Var6 = 'Var ('VS ('VS ('VS ('VS ('VS ('VS 'VZ))))))
type Var7 = 'Var ('VS ('VS ('VS ('VS ('VS ('VS ('VS 'VZ)))))))
type Var8 = 'Var ('VS ('VS ('VS ('VS ('VS ('VS ('VS ('VS 'VZ))))))))
type Var9 = 'Var ('VS ('VS ('VS ('VS ('VS ('VS ('VS ('VS ('VS 'VZ)))))))))
infixr 5 :&:
infixr 5 :=>>:
data Atom (d :: Type) (k :: TYPE r) where
Var :: TyVar d k -> Atom d k
Kon :: k -> Atom d k
(:@:) :: Atom d (k1 -> k2) -> Atom d k1 -> Atom d k2
(:&:) :: Atom d Constraint -> Atom d Constraint -> Atom d Constraint
ForAll :: Atom (d1 -> d) Type -> Atom d Type
(:=>>:) :: Atom d Constraint -> Atom d Type -> Atom d Type
Eval :: Atom d (Exp k) -> Atom d k
type f :$: x = 'Kon f ':@: x
type a :~: b = 'Kon (~) ':@: a ':@: b
type a :~~: b = 'Kon (~~) ':@: a ':@: b
type family InterpretVar (t :: TyVar d k) (tys :: LoT d) :: k where
InterpretVar 'VZ tys = HeadLoT tys
InterpretVar ('VS v) tys = InterpretVar v (TailLoT tys)
type family Interpret (t :: Atom d k) (tys :: LoT d) :: k where
Interpret ('Var v) tys = InterpretVar v tys
Interpret ('Kon t) tys = t
Interpret (f ':@: x) tys = (Interpret f tys) (Interpret x tys)
Interpret (c ':&: d) tys = (Interpret c tys, Interpret d tys)
Interpret ('ForAll f) tys = ForAllI f tys
Interpret (c ':=>>: f) tys = SuchThatI c f tys
Interpret ('Eval f) tys = Eval (Interpret f tys)
newtype ForAllI (f :: Atom (d1 -> d) Type) (tys :: LoT d) where
ForAllI :: (forall t. Interpret f (t ':&&: tys)) -> ForAllI f tys
newtype WrappedI (f :: Atom d Type) (tys :: LoT d) =
WrapI { forall d (f :: Atom d (*)) (tys :: LoT d).
WrappedI f tys -> Interpret f tys
unwrapI :: Interpret f tys }
toWrappedI :: forall f tys t. ForAllI f tys -> WrappedI f (t ':&&: tys)
toWrappedI :: forall {d1} {ks} (f :: Atom (d1 -> ks) (*)) (tys :: LoT ks)
(t :: d1).
ForAllI f tys -> WrappedI f (t ':&&: tys)
toWrappedI (ForAllI forall (t :: d1). Interpret f (t ':&&: tys)
x) = forall d (f :: Atom d (*)) (tys :: LoT d).
Interpret f tys -> WrappedI f tys
WrapI (forall (t :: d1). Interpret f (t ':&&: tys)
x @t)
fromWrappedI :: forall f tys. (forall t. WrappedI f (t ':&&: tys)) -> ForAllI f tys
fromWrappedI :: forall {d1} {d} (f :: Atom (d1 -> d) (*)) (tys :: LoT d).
(forall (t :: d1). WrappedI f (t ':&&: tys)) -> ForAllI f tys
fromWrappedI = coerce :: forall a b. Coercible a b => a -> b
coerce @(forall t. WrappedI f (t ':&&: tys))
newtype SuchThatI (c :: Atom d Constraint) (f :: Atom d Type) (tys :: LoT d) where
SuchThatI :: { forall {d} (c :: Atom d Constraint) (tys :: LoT d)
(f :: Atom d (*)).
SuchThatI c f tys -> Interpret c tys => Interpret f tys
unSuchThatI :: Interpret c tys => Interpret f tys } -> SuchThatI c f tys
type family Satisfies (cs :: [Atom d Constraint]) (tys :: LoT d) :: Constraint where
Satisfies '[] tys = ()
Satisfies (c ': cs) tys = (Interpret c tys, Satisfies cs tys)
type family ContainsTyVar (v :: TyVar d k) (t :: Atom d p) :: Bool where
ContainsTyVar v ('Var v) = 'True
ContainsTyVar v ('Var w) = 'False
ContainsTyVar v ('Kon t) = 'False
ContainsTyVar v (f ':@: x) = Or (ContainsTyVar v f) (ContainsTyVar v x)
ContainsTyVar v (x ':&: y) = Or (ContainsTyVar v x) (ContainsTyVar v y)
ContainsTyVar v (c ':=>>: f) = Or (ContainsTyVar v c) (ContainsTyVar v f)
ContainsTyVar v ('ForAll f) = ContainsTyVar ('VS v) f
type family Or (x :: Bool) (y :: Bool) :: Bool where
Or 'True thing = 'True
Or thing 'True = 'True
Or 'False 'False = 'False