get: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (return value)
m (Some wiki formatting)
Line 10: Line 10:
|s1= hashMap [[get]] key
|s1= hashMap [[get]] key


|p1= hashMap : [[HashMap]]
|p1= hashMap: [[HashMap]]


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


|r1= [[Anything]], or [[Nothing]] if key not found
|r1= [[Anything]], or [[Nothing]] if ''key'' is not found


|x1= <code>[[private]] _myValue = _myHashMap [[get]] "a";</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