assert: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "{{Command " to "{{RV|type=command ")
m (Text replacement - "<dd class="notedate">Posted on ([^<>]+) " to "<dd class="notedate">Posted on $1</dd> ")
Line 40: Line 40:
<dl class="command_description">
<dl class="command_description">
<!-- Note Section BEGIN -->
<!-- Note Section BEGIN -->
<dd class="notedate">Posted on May 15, 2010 - 0:01
<dd class="notedate">Posted on May 15, 2010 - 0:01</dd>
<dt class="note">[[User:Roehre|Roehre]]<dd class="note">Returns false, if condition is false, and returns true, if condition is true.
<dt class="note">[[User:Roehre|Roehre]]<dd class="note">Returns false, if condition is false, and returns true, if condition is true.
<!-- Note Section END -->
<!-- Note Section END -->

Revision as of 02:07, 30 January 2021

Hover & click on the images for description

Description

Description:
Description needed
Groups:
Program Flow

Syntax

Syntax:
Syntax needed
Parameters:
condition: Boolean
Return Value:
Return value needed

Examples

Example 1:
assert (1>2); PreprocessFile.jpg
Example 2:
Check function params (Faster alternative to BIS_fnc_param)some_func = { _0 = _this select 0; _1 = _this select 1; _2 = _this select 2; if (!assert ( typeName _0 == "ARRAY" && typeName _1 == "STRING" && typeName _2 == "SCALAR" )) exitWith {/*optional error logging*/}; hint "Alright!"; }; [1,2,3] call some_func; //assert error [[1],"2",3] call some_func; //Alright!

Additional Information

See also:
See also needed

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
Posted on May 15, 2010 - 0:01
Roehre
Returns false, if condition is false, and returns true, if condition is true.