value in map(value a, name of map b)


Checks if the value a can be found in the named map with name b. If no name is specified, the name default is used.

Note: Please note that you can also check for 'hidden' values. To get a return value true, the compare value has to be an identical 'hidden' value. See the explanations for the Empty Flag.

Description of Parameters

Parameter

Description

a

Value.

b

(optional) Name of the map. Default: default

Examples

Defined is a map MyMap containing the elements {1key=val1, Key1=val2, key2=val3}.

Parameter a

Parameter b

Result

val2

MyMap

true

val4

MyMap

false

val2

MyOtherMap

false