replaceAll (Function)
Function returns the updated map after replacing all the key-value pairs from another map, if keys are present.
Syntax
<OBJECT> map:replaceAll(<OBJECT> to.map, <OBJECT> from.map)
Query Parameters
Name | Description | Default Value | Possible Data Types | Optional | Dynamic |
---|---|---|---|---|---|
to.map | The map into which the key-values need to copied. | OBJECT | No | Yes | |
from.map | The map from which the key-values are copied. | OBJECT | No | Yes |
Example 1
map:replaceAll(toMap, fromMap)
If toMap
contains key-value pairs (symbol
: gdn
), (volume
: 100), and if fromMap
contains key-value pairs (symbol
: IBM
), (price
: 12), then the function returns updated toMap
with key-value pairs (symbol
: IBM
), (volume
: 100).