Not: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
''result'' = NOT ''expression''
''result'' = NOT ''expression''


'''Description'''
== Description ==


NOT returns the logical negation of an expression. The required argument, ''expression'', is any valid expression. ''result'' is TRUE if ''expression'' evaluates to FALSE, FALSE if ''expression'' evaluates to TRUE, ''result'' is NULL otherwise.
Not returns the logical negation of an expression. The required argument, ''expression'', is any valid expression. ''result'' is TRUE if ''expression'' evaluates to FALSE, FALSE if ''expression'' evaluates to TRUE, ''result'' is NULL otherwise.


'''Example'''
== Example ==


<pre>
<pre>
REM NOT Example
Rem Not Example
'NOT does logical negation & bitwise inversion
'Not does logical negation & bitwise inversion
DIM Test1, Test2, Test3, x, y
Dim Test1, Test2, Test3, x, y
x = 3
x = 3
y = 8
y = 8
Test1 = NOT(x > 0)
Test1 = Not(x > 0)
Test2 = NOT(y > 10)
Test2 = Not(y > 10)
Test3 = NOT x
Test3 = Not x
PRINT "Logical:"
Print "Logical:"
PRINT "  NOT(x > 0) = " & Test1
Print "  NOT(x > 0) = " & Test1
PRINT "  NOT(y > 10) = " & Test2
Print "  NOT(y > 10) = " & Test2
</pre>
</pre>


'''Output'''
== Output ==


<pre>
<pre>
Line 29: Line 29:
</pre>
</pre>


'''Related Items'''
== Related Items ==


[[and|AND]], [[eqv|EQV]], [[imp|IMP]], [[or|OR]], [[xor|XOR]]
[[and|AND]], [[eqv|EQV]], [[imp|IMP]], [[or|OR]], [[xor|XOR]]

Revision as of 02:23, 17 August 2012

result = NOT expression

Description

Not returns the logical negation of an expression. The required argument, expression, is any valid expression. result is TRUE if expression evaluates to FALSE, FALSE if expression evaluates to TRUE, result is NULL otherwise.

Example

Rem Not Example
'Not does logical negation & bitwise inversion
Dim Test1, Test2, Test3, x, y
x = 3
y = 8
Test1 = Not(x > 0)
Test2 = Not(y > 10)
Test3 = Not x
Print "Logical:"
Print "  NOT(x > 0) = " & Test1
Print "  NOT(y > 10) = " & Test2

Output

Logical:
  NOT(x > 0) = False
  NOT(y > 10) = True

Related Items

AND, EQV, IMP, OR, XOR