Skip to content

MAP_remove_str

BigETI edited this page May 4, 2018 · 1 revision

Description

Map remove (key[] as string)

Syntax

MAP_remove_str(&Map:map, const key[])

Example

MAP_insert_str_val(map, "This is a test.", 1);
MAP_insert_str_val(map, "foo", 2);
MAP_insert_str_val(map, "bar", 3);
MAP_remove_str(map, "foo");