Skip to content

MAP_insert_str_arr

BigETI edited this page May 4, 2018 · 1 revision

Description

Map insert (key[] as string, value)

Syntax

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

Example

new Map:map, arr[10] = { 100, ... };
MAP_insert_str_arr(map, "This is a test.", arr);