-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
defaultGshowsPrec
using showsPrec
`GShow t` is isomorphic to `forall a. Show (t a)`, but we don't need the quantified constraint to write a function to be used to define the method. The more specific type should make a nicer error if one didn't derive the necessary polymorphic `Show` instance.
- Loading branch information
1 parent
6efbd3b
commit 05fc62a
Showing
2 changed files
with
6 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
module Data.GADT.Show ( | ||
-- * Showing | ||
GShow (..), | ||
defaultGshowsPrec, | ||
gshows, | ||
gshow, | ||
-- * Reading | ||
|