! a: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " <h3 style="display:none">Notes</h3> <dl class="command_description"> <!-- Note Section BEGIN --> <!-- Note Section END --> </dl>" to "")
m (Text replacement - "\| *(Comments|COMMENTS|Game name|Game version|GROUP[0-9]|(Example|EXAMPLE) ?[0-9]|SEEALSO|PROBLEMS?|MP|MULTIPLAYER|DESCRIPTION|EXEC|SYNTAX[0-9]?|RETURNVALUE ?[0-9]?) *= " to " ")
Line 1: Line 1:
{{Command|Comments=
{{Command




Line 6: Line 6:
|1.00|Game Version=
|1.00|Game Version=


|gr1= Variables |GROUP1=
|gr1= Variables  
|gr2= Math |GROUP2=
|gr2= Math  




| Returns a negation of Boolean expression. That means <tt>[[true]]</tt> becomes <tt>[[false]]</tt> and vice versa. |DESCRIPTION=
| Returns a negation of Boolean expression. That means <tt>[[true]]</tt> becomes <tt>[[false]]</tt> and vice versa.  




| [[Boolean]] <nowiki>=</nowiki> '''!''' a |SYNTAX=
| [[Boolean]] <nowiki>=</nowiki> '''!''' a  


|p1= a: [[Boolean]] |PARAMETER1=
|p1= a: [[Boolean]] |PARAMETER1=


| [[Boolean]] |RETURNVALUE=
| [[Boolean]]  




Line 29: Line 29:
[[if]] [[not]] (_a) [[then]] {
[[if]] [[not]] (_a) [[then]] {
     [[hint]] "The player is dead!";
     [[hint]] "The player is dead!";
}</code> |EXAMPLE1=
}</code>  




| [[not]], [[Operators]] |SEEALSO=
| [[not]], [[Operators]]  


}}
}}

Revision as of 16:20, 17 January 2021

Hover & click on the images for description

Description

Description:
Returns a negation of Boolean expression. That means true becomes false and vice versa.
Groups:
VariablesMath

Syntax

Syntax:
Boolean = ! a
Parameters:
a: Boolean
Return Value:
Boolean

Examples

Example 1:
The code _a = alive player; if (!_a) then { hint "The player is dead!"; } is the same as _a = alive player; if not (_a) then { hint "The player is dead!"; }

Additional Information

See also:
notOperators

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note


Bottom Section