Skip to content
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

Feature Request - add NOR operator #7

Open
idrisr opened this issue Apr 22, 2024 · 1 comment
Open

Feature Request - add NOR operator #7

idrisr opened this issue Apr 22, 2024 · 1 comment
Labels
enhancement New feature or request

Comments

@idrisr
Copy link

idrisr commented Apr 22, 2024

First of, thanks for the great package!

For the sake of completeness, it would be useful to have the NOR (negated disjunction) operator. This is often use along with NAND to show that either is sufficient for expressing AND, NOT, and OR.

The truth table for nor is

| P | Q | P NOR Q |
|---|---|---------|
| T | T | F       |
| T | F | F       |
| F | T | F       |
| F | F | T       |
@K-Trout
Copy link
Owner

K-Trout commented Apr 23, 2024

Hey

Thank you very much, and thanks for the suggestion.
When I work on it the next time, I will try to add it.

Cheers

@K-Trout K-Trout added the enhancement New feature or request label Apr 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants