a less b: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
m (Some wiki formatting)
 
(67 intermediate revisions by 15 users not shown)
Line 1: Line 1:
[[Category:Scripting Commands|#]]
{{RV|type=command
[[Category:Scripting Commands OFP 1.97|#]]
[[Category:Scripting Commands OFP 1.46|#]]
[[Category:Scripting Commands ArmA|#]]


back to [[Scripting_Reference#.23|COMREF]]
|sortKey= #


<h2 style="color:#000066">''' ''a'' < ''b'' '''</h2>
|game1= ofp
|version1= 1.00


|game2= ofpe
|version2= 1.00


'''Operand types:'''
|game3= arma1
|version3= 1.00


'''a:''' [[Number]]
|game4= arma2
|version4= 1.00


'''b:''' [[Number]]
|game5= arma2oa
|version5= 1.50


'''Type of returned value:'''
|game6= tkoh
|version6= 1.00


[[Boolean]]
|game7= arma3
|version7= 0.50


'''Description:'''
|gr1= Math
|gr2= Variables


a '''less than''' b
|descr= Returns if ''a'' is lesser than ''b''.


|s1= a [[a less b|&lt;]] b


'''Example:'''
|p1= a: [[Number]]


? (([[fuel]] truck1) '''<''' 0.5) : [[hint]] "Truck1 has less than half a tank of fuel left."
|p2= b: [[Number]]
 
|r1= [[Boolean]]
 
|x1= <sqf>_test = 1 < 2; // true</sqf>
 
|x2= <sqf>_test = 2 < 1; // false</sqf>
 
|seealso= [[Operators]]
}}

Latest revision as of 17:38, 13 May 2022

Hover & click on the images for description

Description

Description:
Returns if a is lesser than b.
Groups:
MathVariables

Syntax

Syntax:
a < b
Parameters:
a: Number
b: Number
Return Value:
Boolean

Examples

Example 1:
_test = 1 < 2; // true
Example 2:
_test = 2 < 1; // false

Additional Information

See also:
Operators

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