-
Notifications
You must be signed in to change notification settings - Fork 154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP: Show type class #412
base: master
Are you sure you want to change the base?
WIP: Show type class #412
Conversation
This could be also an opportunity to address #104. |
Codecov Report
@@ Coverage Diff @@
## master #412 +/- ##
==========================================
- Coverage 95.51% 93.16% -2.35%
==========================================
Files 46 47 +1
Lines 557 571 +14
Branches 12 10 -2
==========================================
Hits 532 532
- Misses 25 39 +14
Continue to review full report at Codecov.
|
If we can separate out the result display part of |
You're right @kusamakura. This is painful lesson in keeping type classes focused on one concern. |
Hi guys. Just wondering – any activity on this PR? Seems this functionality is a really nice-to-have one. |
This is an attempt to allow for custom error messages (#161) and to improve string representations of compound predicates like
type LessEqual[N] = Not[Greater[N]]
(#49) using a dedicatedShow
type class.First results look promising: