Skip to content

MAP_remove_arr

BigETI edited this page May 4, 2018 · 1 revision

Description

Map remove (key[])

Syntax

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

Example

new Map:map, arr1[10] = { 100, ... }, arr2[20] = { 200, ... }, arr3[30] = { 300, ... };
MAP_insert_arr_val(map, arr1, _, 1);
MAP_insert_arr_val(map, arr2, _, 2);
MAP_insert_arr_val(map, arr3, _, 3);
MAP_remove_arr(map, arr2);