-
Notifications
You must be signed in to change notification settings - Fork 248
Move T?
to Relation.Nullary.Decidable.Core
#2189
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
Changes from 2 commits
e3a3ad0
ea53921
bfb7959
e42161a
a173664
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -838,6 +838,9 @@ Non-backwards compatible changes | |
|
||
4. The modules `Relation.Nullary.(Product/Sum/Implication)` have been deprecated | ||
and their contents moved to `Relation.Nullary.(Negation/Reflects/Decidable)`. | ||
|
||
5. The proof `T?` has been moved from `Data.Bool.Properties` to `Relation.Nullary.Decidable.Core` | ||
(but is still re-exported by the former). | ||
|
||
as well as the following breaking changes: | ||
|
||
|
@@ -3563,6 +3566,11 @@ Additions to existing modules | |
poset : Set a → Poset _ _ _ | ||
``` | ||
|
||
* Added new proof in `Relation.Nullary.Reflects`: | ||
```agda | ||
T-reflects : Reflects (T b) b | ||
``` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So, I chose the name There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I chose this name because it was consistent with the other properties immediately below. I don't think this falls into
Firstly, we're not in a I'll have a think about a suitable name. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think that's a fair response (modulo my regarding |
||
|
||
* Added new operations in `System.Exit`: | ||
``` | ||
isSuccess : ExitCode → Bool | ||
|
Uh oh!
There was an error while loading. Please reload this page.