Created
September 4, 2016 02:19
-
-
Save lastland/b87c379f65aadd475bdc031518ca4641 to your computer and use it in GitHub Desktop.
Dependently Typed Vectors in Haskell
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 GADTs, DataKinds, KindSignatures, TypeFamilies #-} | |
module Vector where | |
data Nat = Z | S Nat | |
data Vec :: * -> Nat -> * where | |
Nil :: Vec a Z | |
Cons :: a -> Vec a n -> Vec a (S n) | |
data SNat n where | |
SZ :: SNat Z | |
SS :: SNat n -> SNat (S n) | |
rep :: SNat n -> a -> Vec a n | |
rep SZ a = Nil | |
rep (SS n) a = Cons a (rep n a) | |
type family Plus(n :: Nat)(m :: Nat) :: Nat where | |
Plus Z m = m | |
Plus (S n) m = S (Plus n m) | |
sPlus :: SNat n -> SNat m -> SNat (Plus n m) | |
sPlus SZ m = m | |
sPlus (SS n) m = SS (sPlus n m) | |
app :: Vec a n -> Vec a m -> Vec a (Plus n m) | |
app Nil l = l | |
app (Cons h t) l = Cons h (app t l) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment