fix: more tuplecontaining fixes

This commit is contained in:
orion 2023-11-18 17:46:41 -06:00
parent 20ab53459b
commit e7fecc01ed
Signed by: orion
GPG Key ID: 6D4165AE4C928719

View File

@ -17,6 +17,10 @@ else instance TupleContaining a (a /\ b) where
extract = fst
else instance TupleContaining b (a /\ b) where
extract = snd
else instance TupleContaining b (a /\ b /\ c) where
extract (_ /\ b /\ _) = b
else instance TupleContaining c (a /\ b /\ c) where
extract (_ /\ _ /\ c) = c
else instance TupleContaining b (a /\ b /\ Unit) where
extract (_ /\ b /\ _) = b
else instance TupleContaining a tail => TupleContaining a (Tuple head tail) where