Skip to content
Snippets Groups Projects
Commit 6211eb43 authored by Alice Brenon's avatar Alice Brenon
Browse files

Propagate Eq and Ord along @ to be able to use composite types as keys...

Propagate Eq and Ord along @ to be able to use composite types as keys (typically, ParagraphRecord defined out of ArticleRecord
parent 85e5cb7a
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,12 @@ instance Has a b => Has a (b @ c) where
instance {-# OVERLAPS #-} Has b (a @ b) where
get (_ :@: b) = b
instance (Eq a, Eq b) => Eq (a @ b) where
(a1 :@: b1) == (a2 :@: b2) = a1 == a2 && b1 == b2
instance (Ord a, Ord b) => Ord (a @ b) where
(a1 :@: b1) <= (a2 :@: b2) = a1 < a2 || (a1 == a2 && b1 <= b2)
instance (DefaultOrdered a, DefaultOrdered b) => DefaultOrdered (a @ b) where
headerOrder _ = headerOrder (undefined :: a) <> headerOrder (undefined :: b)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment