Skip to content

MAP_insert_arr_arr

BigETI edited this page May 4, 2018 · 1 revision

Description

Map insert (key[], value[])

Syntax

MAP_insert_arr_arr(&Map:map, const key[], key_size = sizeof key, const value[], value_size = sizeof value)

Example

new Map:map, arr1[10] = { 100, ... }, arr2[20] = { 200, ... };
MAP_insert_arr_arr(map, arr1, _, arr2);