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

Define GSequenceable over Par1.

This commit is contained in:
Rob Rix 2016-07-22 15:40:01 -04:00
parent 7203942df2
commit 5b36bf1507

View File

@ -13,3 +13,6 @@ class GSequenceable t where
instance GSequenceable U1 where instance GSequenceable U1 where
gsequenceAlt _ = pure U1 gsequenceAlt _ = pure U1
instance GSequenceable Par1 where
gsequenceAlt (Par1 a) = Par1 <$> a