☜ | logicalop1995 Version of ANSI (Equivalent to Current ISO Version) of Standard | ☞ |
logicalop | ::= | │ │ │ |
& ! |
│ │ │ |
The operators ! and & are called logical operators. (They are given the names or and and, respectively.) They operate on the truth-value interpretations of their arguments, and they produce truth-value results.
A ! B = | { | 0 if both A and B have the value 0 1 otherwise |
A & B = | { | 1 if both A and B have the value 1 0 otherwise |
The dual operators '& and '! are defined by:
A '& B = | '(A & B) | |
A '! B = | '(A ! B) |
Copyright © Standard Documents; 1977-2024 MUMPS Development Committee;
Copyright © Examples: 1995-2024 Ed de Moel;
Copyright © Annotations: 2003-2008 Jacquard Systems Research
Copyright © Annotations: 2008-2024 Ed de Moel.
This page most recently updated on 15-Nov-2023, 13:18:49.
For comments, contact Ed de Moel (demoel@jacquardsystems.com)