finite: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
m (template:command argument fix)
Line 7: Line 7:
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[true|True]], if number is finite (not infinite and a valid number) |= Description
| [[true|True]], if number is finite (not infinite and a valid number) |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[Boolean]] <nowiki>=</nowiki> '''finite''' x |= Syntax
| [[Boolean]] <nowiki>=</nowiki> '''finite''' x |SYNTAX=


|p1=  x: [[Number]] |= Parameter 1
|p1=  x: [[Number]] |PARAMETER1=


| [[Boolean]] |= Return value
| [[Boolean]] |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
|x1= <pre>finite 10/0 .... result is false</pre> |= Example 1
|x1= <pre>finite 10/0 .... result is false</pre> |EXAMPLE1=
|x1= <pre>?!finite 10/0 : hint "Infinite"</pre> |= Example 1
|x1= <pre>?!finite 10/0 : hint "Infinite"</pre> |EXAMPLE1=


____________________________________________________________________________________________
____________________________________________________________________________________________


|  |= See also
|  |SEEALSO=


}}
}}

Revision as of 15:39, 7 April 2019

-wrong parameter ("Arma") defined!-1.00
Hover & click on the images for description

Description

Description:
True, if number is finite (not infinite and a valid number)
Groups:
Uncategorised

Syntax

Syntax:
Boolean = finite x
Parameters:
x: Number
Return Value:
Boolean

Examples

Example 1:
?!finite 10/0 : hint "Infinite"

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

Notes

Posted on 27 Sep, 2013
Killzone_Kid
Don't get high hopes with this command thinking what a great way of catching divisions by zero, the command is pretty useless in this respect: //ArmA 2 hint str finite (10/0); //true ... O_o Huh???? hint str (10/0); //0 ... Weird, but that explains it. //ArmA 3 hint str finite (10/0); // Error Zero Divisor hint str finite 10; //true hint str finite 1000000000000000000000000000000000000000; //false

Bottom Section