diff --git a/src/Data/Align.hs b/src/Data/Align.hs index 87c4c29d9..76957344f 100644 --- a/src/Data/Align.hs +++ b/src/Data/Align.hs @@ -30,13 +30,6 @@ instance Align [] where | otherwise = zipWith These as bs where (la, lb) = (length as, length bs) -instance Align Maybe where - nil = Nothing - a `align` b | Just a <- a, Just b <- b = Just (These a b) - | Just a <- a = Just (This a) - | Just b <- b = Just (That b) - | otherwise = Nothing - -- | A functor which can be traversed through an `Align`able functor, inverting the nesting of one in the other, given some default value. -- |