Skip to content

MAP_insert_arr_val

BigETI edited this page May 4, 2018 · 1 revision

Description

Map insert (key[], value)

Syntax

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

Example

new Map:map, arr[10] = { 100, ... };
MAP_insert_arr_val(map, arr, 1);