a && b: Difference between revisions
| mNo edit summary |  (expanded) | ||
| Line 9: | Line 9: | ||
| | Returns whether two values both are <tt>true</tt>. | | Returns whether two values both are <tt>true</tt>. | ||
| Identical to: a '''[[and]]''' b |= Description | |||
| ____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| | a '''&&''' b |= Syntax | | a '''&&''' b |= Syntax | ||
| |p1= a: [[Boolean]] |= | |p1= a: a test condition or a variable that return a [[Boolean]] value |= Parameter 1 | ||
| |p2= b: [[Boolean]] |= | |p2= b: a test condition or a variable that return a [[Boolean]] value |= Parameter 2 | ||
| | [[Boolean]] |= Return value | | [[Boolean]] |= Return value | ||
| ____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| |x1=  | |x1= <pre>if (alive player) and (enemycount==0) then {hint "you win"}</pre> |= Example 1 | ||
| | [[and]] |= See also | | [[and]] |= See also | ||
| |mp= no special considerations|= | |||
| }} | }} | ||
Revision as of 00:17, 14 December 2006
Description
- Description:
- Returns whether two values both are true. Identical to: a and b
- Multiplayer:
- no special considerations
- Groups:
- Uncategorised
Syntax
- Syntax:
- a && b
- Parameters:
- a: a test condition or a variable that return a Boolean value
- b: a test condition or a variable that return a Boolean value
- Return Value:
- Boolean
Examples
- Example 1:
- if (alive player) and (enemycount==0) then {hint "you win"}
Additional Information
- See also:
- and
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
 
	