createHashMapFromArray
Jump to navigation
Jump to search
Description
- Description:
- Creates a new HashMap and initializes it from a key-value pair array
- Groups:
- HashMapArrays
Syntax
- Syntax:
- createHashMapFromArray [[key1, value1], [key2, value2]]
- Parameters:
- keyN: HashMapKey
- valueN: Anything
- Return Value:
- HashMap
Alternative Syntax
- Syntax:
- keys createHashMapFromArray values
- Parameters:
- keys: Array of HashMapKeys
- values: Array of Anything
- Return Value:
- HashMap
Examples
- Example 1:
- createHashMapFromArray [["a", 1], ["b", 2], ["c", 3]];
- Example 2:
- [1, 2, 3, 4] createHashMapFromArray []; // returns [[1, <null>], [2, <null>], [4, <null>], [3, <null>]]
- Example 3:
- [1, 2, 3] createHashMapFromArray ["one", "two", "three", "four"]; // returns [[1, "one"], [2, "two"], [3, "three"]]
Additional Information
- See also:
- createHashMap
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