Skip to content

MAP_contains_val

BigETI edited this page May 4, 2018 · 1 revision

Description

Map contains (key)

Returns

true if successful, otherwise false

Syntax

bool:MAP_contains_val(Map:map, key)

Example

new Map:map;
MAP_insert_val_val(map, 1, 2);
printf("Value%s found", (MAP_contains_val(map, 1) ? ("") : (" not")));