1
1
mirror of https://github.com/github/semantic.git synced 2024-12-23 23:11:50 +03:00

Contrast sums.

This commit is contained in:
Rob Rix 2016-07-11 11:54:16 -04:00
parent 57cfaa3e36
commit fa88b23fdc

View File

@ -78,6 +78,7 @@ instance (GAlign f, GAlign g) => GAlign (f :+: g) where
where go a b = case (a, b) of
(L1 a, L1 b) -> L1 (galignWith f a b)
(R1 a, R1 b) -> R1 (galignWith f a b)
(a, b) -> f a b
instance (GAlign f, GAlign g) => GAlign (f :*: g) where
galignWith f (a1 :*: b1) (a2 :*: b2) = galignWith f a1 a2 :*: galignWith f b1 b2