1
1
mirror of https://github.com/github/semantic.git synced 2024-11-24 00:42:33 +03:00

Add a gtraverse1 method to GTraversable1.

This commit is contained in:
Rob Rix 2020-01-13 13:04:25 -05:00
parent c6d658130d
commit e0f6462e78
No known key found for this signature in database
GPG Key ID: 2BE643E01DC032AE

View File

@ -80,3 +80,8 @@ instance GFoldable1 c U1 where
class GTraversable1 c t where
gtraverse1
:: Applicative f
=> (forall t' . c t' => t' a -> f (t' b))
-> t a
-> f (t b)