Created
June 11, 2019 22:58
-
-
Save plaidfinch/efc1144edad85d001baae325ff6f2a44 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE DataKinds #-} | |
{-# LANGUAGE GADTs #-} | |
{-# LANGUAGE KindSignatures #-} | |
{-# LANGUAGE PolyKinds #-} | |
{-# LANGUAGE TypeFamilies #-} | |
{-# LANGUAGE TypeOperators #-} | |
{-# LANGUAGE UndecidableInstances #-} | |
module Fixes where | |
data Nat = Z | S Nat | |
data Fin (max :: Nat) where | |
FZ :: Fin ('S n) | |
FS :: Fin n -> Fin ('S n) | |
data Vec (n :: Nat) (a :: *) where | |
Nil :: Vec n a | |
(:*) :: a -> Vec n a -> Vec ('S n) a | |
type family Map (f :: k -> l) (xs :: Vec n k) :: Vec n l where | |
Map f 'Nil = 'Nil | |
Map f (x ':* xs) = f x ':* Map f xs | |
type family Index (i :: Fin n) (xs :: Vec n k) :: k where | |
Index 'FZ (x ':* _) = x | |
Index ('FS n) (_ ':* xs) = Index n xs | |
type family Range (n :: Nat) :: Vec n (Fin n) where | |
Range 'Z = 'Nil | |
Range ('S n) = 'FZ ':* Map 'FS (Range n) | |
newtype Fixes (fs :: Vec n (Vec n * -> *)) (i :: Fin n) | |
= Fixes (Index i fs (Map (Fixes fs) (Range n))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment