Not: Difference between revisions

Jump to navigation Jump to search
52 bytes added ,  06:58, 9 July 2020
(One intermediate revision by one other user not shown)
Line 1: Line 1:
{{Built-in|Not|~}} is a [[Primitive function|primitive]] [[monadic]] [[scalar function]] that returns the [[wikipedia:Negation|logical negation]] of a [[Boolean]] argument—that is, 0 if the argument is 1 and 1 if it is 0. In some languages, such as [[J]], it is extended so that Not <source lang=apl inline>x</source> is equivalent to <source lang=apl inline>1-x</source> while in others, such as [[K]], it is extended so that Not <source lang=apl inline>x</source> is equivalent to <source lang=apl inline>0=x</source>.
{{Built-in|Not|~}} is a [[monadic]] [[scalar function]] that returns the [[wikipedia:Negation|logical negation]] of a [[Boolean]] argument—that is, 0 if the argument is 1 and 1 if it is 0. In some languages, such as [[J]], it is extended so that Not <source lang=apl inline>x</source> is equivalent to <source lang=apl inline>1-x</source> while in others, such as [[K]], it is extended so that Not <source lang=apl inline>x</source> is equivalent to <source lang=apl inline>0=x</source>.


== Examples ==
== Examples ==
Line 36: Line 36:
| <source lang=apl inline>0≠⍵</source> || [[K]]
| <source lang=apl inline>0≠⍵</source> || [[K]]
|}
|}
== See also ==
* [[Negate]]
* [[Nor]]
* [[Nand]]
* [[Not Equal to]]
* [[Not Match]]


== External links ==
== External links ==

Navigation menu