Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion paper.lhs
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@ data Index l a where
Tail :: Index t x -> Index (h : t) x

data TList l f where
TNil :: TList [] f
TNil :: TList '[] f
(:::) :: f h -> TList t f -> TList (h : t) f

index :: TList l f -> Index l a -> f a
Expand Down