Add Generically (generic Semigroup, Monoid instances) and Generically1...
Add Generically (generic Semigroup, Monoid instances) and Generically1 (generic Functor, Applicative, Alternative, Eq1, Ord1 instances) to GHC.Generics.
- docs/users_guide/exts/generics.rst 26 additions, 5 deletionsdocs/users_guide/exts/generics.rst
- libraries/base/Data/Functor/Classes.hs 14 additions, 1 deletionlibraries/base/Data/Functor/Classes.hs
- libraries/base/GHC/Generics.hs 156 additions, 6 deletionslibraries/base/GHC/Generics.hs
- libraries/base/changelog.md 5 additions, 1 deletionlibraries/base/changelog.md
- testsuite/tests/generics/T19819.hs 17 additions, 0 deletionstestsuite/tests/generics/T19819.hs
- testsuite/tests/generics/T19819.stdout 2 additions, 0 deletionstestsuite/tests/generics/T19819.stdout
- testsuite/tests/generics/all.T 1 addition, 0 deletionstestsuite/tests/generics/all.T
- testsuite/tests/ghci/scripts/T12550.stdout 4 additions, 0 deletionstestsuite/tests/ghci/scripts/T12550.stdout
-
mentioned in merge request !5726 (closed)
-
FYI, I have a library
wrapped
that provides essentially the same thing that's added here, but generalized to arbitrary "underlying" classes with a phantom tag, rather than only forGeneric{1}
: https://hackage.haskell.org/package/wrapped-0.1.0.1/docs/Data-Wrapped.html#t:Wrapped.This sort of thing shows up pretty frequently for classes other than just
Generic
, e.g. lots of instances can be derived fromIsList
orFoldable
. In the class-tagged form, library authors can provide non-orphan instances not only if they define the target class, but also if they define the source class (e.g.adjunctions
could provideinstance Representable f => Functor (Wrapped1 Representable f)
). I find this presentation reads more naturally, too:data T = ... deriving (Semigroup, Monoid) via Wrapped Generic T
.Since a specialization is already being added to
base
, what do you think about including the more-general form, too? I think it'd be great to have things likeApplicative f => Functor (Wrapped1 Applicative f)
,Traversable f => Foldable (Wrapped1 Traversable f)
,Foldable1 f => Foldable (Wrapped1 Foldable1 f)
,(Applicative f, Monoid a) => Monoid (Wrapped1 Applicative f a)
, andOrd a => Eq (Wrapped Ord a)
all available for DerivingVia without any need for orphan instances.I've already documented some drawbacks and limitations of this technique (including some related to the Monoid instance specifically) in the library's README.
Edited by Andrew Pritchard -
mentioned in issue #17147 (closed)