getOrDefault: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\|game([0-9]) ?= (.+) \|version([0-9]) ?= (.+) " to "|game$1= $2 |version$3= $4 ")
m (description)
Line 12: Line 12:
|p1= hashMap : [[HashMap]]
|p1= hashMap : [[HashMap]]


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


|p3= defaultValue: [[Anything]] - (Optional, default [[nil]])
|p3= defaultValue: [[Anything]] - (Optional, default [[nil]])

Revision as of 01:36, 22 June 2021

Hover & click on the images for description

Description

Description:
Retrieves a value out of a HashMap after looking it up by its key. When the HashMap doesn't contain the key, the default value is returned
Groups:
HashMap

Syntax

Syntax:
hashMap getOrDefault [key, defaultValue]
Parameters:
hashMap : HashMap
key: HashMapKey - Case sensitive key
defaultValue: Anything - (Optional, default nil)
setDefault: Boolean - (Optional, default false) - If set to true and value does not exist in provided hash map, defaultValue will be added to the hash map Template:Since
Return Value:
Anything

Examples

Example 1:
private _myValue = _myHashMap getOrDefault ["a", "Not Found!"];
Example 2:
private _myValue = _hashMap getOrDefault ["a", "Not Found!", true]; // Will add default value to the hash map if it does not exist

Additional Information

See also:
HashMap get

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