get: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Create thing)
 
m (Some wiki formatting)
(6 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Command
{{RV|type=command


|game1= arma3dev
|game1= arma3
 
|version1= 2.02
|version1= 2.01


|gr1= HashMap
|gr1= HashMap
Line 11: Line 10:
|s1= hashMap [[get]] key
|s1= hashMap [[get]] key


|p1= hashMap : [[HashMap]]
|p1= hashMap: [[HashMap]]
 
|p2= key: [[HashMapKey]]


|r1= [[Anything]]
|p2= key: [[HashMapKey]] - Case sensitive key


|x1= <code>[[private]] _myValue = _myHashMap [[get]] "a";</code>
|r1= [[Anything]], or [[Nothing]] if ''key'' is not found


|x2= <code></code>
|x1= <sqf>private _myValue = _myHashMap get "a";</sqf>


|seealso= [[HashMap]] [[getOrDefault]]
|seealso= [[HashMap]] [[getOrDefault]]
}}
}}

Revision as of 14:50, 5 May 2022

Hover & click on the images for description

Description

Description:
Retrieves a value out of a HashMap after looking it up by its key.
Groups:
HashMap

Syntax

Syntax:
hashMap get key
Parameters:
hashMap: HashMap
key: HashMapKey - Case sensitive key
Return Value:
Anything, or Nothing if key is not found

Examples

Example 1:
private _myValue = _myHashMap get "a";

Additional Information

See also:
HashMap getOrDefault

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