createHashMapFromArray: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(added array category)
m (Some wiki formatting)
Line 24: Line 24:
|p21= keys: [[Array]] - Array of [[HashMapKey]]s
|p21= keys: [[Array]] - Array of [[HashMapKey]]s


|p22= values: [[Array]] - Array of [[Anything|anything]]
|p22= values: [[Array]] - Array of [[Anything]]
{{Feature|Informative|Size of ''keys'' and size of ''values'' arrays do not need to be equal. Missing values will be filled with [[nil]].}}
{{Feature|informative|Size of ''keys'' and size of ''values'' arrays do not need to be equal. Missing values will be filled with [[nil]].}}


|r2= [[HashMap]]
|r2= [[HashMap]]


|x1= <code>[[createHashMapFromArray]] [["a",1], ["b",2], ["c",3]];</code>
|x1= <sqf>createHashMapFromArray [["a", 1], ["b", 2], ["c", 3]];</sqf>


|x2= <code>[1,2,3,4] [[createHashMapFromArray]] [];{{cc|Returns [[1,<null>],[2,<null>],[4,<null>],[3,<null>]]}}</code>
|x2= <sqf>[1, 2, 3, 4] createHashMapFromArray []; // returns [[1, <null>], [2, <null>], [4, <null>], [3, <null>]]</sqf>


|x3= <code>[1,2,3] [[createHashMapFromArray]] ["one","two","three","four"];{{cc|Returns [[1,"one"],[2,"two"],[3,"three"]]}}</code></code>
|x3= <sqf>[1, 2, 3] createHashMapFromArray ["one", "two", "three", "four"]; // returns [[1, "one"], [2, "two"], [3, "three"]]</sqf>


|seealso= [[createHashMap]]
|seealso= [[createHashMap]]
}}
}}

Revision as of 23:20, 18 April 2022

Hover & click on the images for description

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:
key: HashMapKey
value: Anything
Return Value:
HashMap

Alternative Syntax

Syntax:
keys createHashMapFromArray values
Parameters:
keys: Array - Array of HashMapKeys
values: Array - Array of Anything
Size of keys and size of values arrays do not need to be equal. Missing values will be filled with nil.
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