Skip to content

MAP_insert_arr_str

BigETI edited this page May 4, 2018 · 1 revision

Description

Map insert (key[], value[] as string)

Syntax

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

Example

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