Skip to content

MAP_insert_val_arr

BigETI edited this page May 4, 2018 · 1 revision

Description

Map insert (key, value[])

Syntax

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

Example

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