Difference between revisions of "Core.Actions.MapPutItems"

From emotive
Jump to navigation Jump to search
Line 27: Line 27:
  
 
== See also ==
 
== See also ==
[[Assignment]] <br/>
+
[[Core.Actions.Assignment|Assignment]] <br/>
[[ProcedureCall]] <br/>
+
[[Core.Actions.ProcedureCall|ProcedureCall]] <br/>
[[ShiftRight]] <br/>
+
[[Core.Actions.ShiftRight|ShiftRight]] <br/>
[[ShiftLeft]] <br/>
+
[[Core.Actions.ShiftLeft|ShiftLeft]] <br/>
[[SetBit]] <br/>
+
[[Core.Actions.SetBit|SetBit]] <br/>
[[ReplaceSubByteField]] <br/>
+
[[Core.Actions.ReplaceSubByteField|ReplaceSubByteField]] <br/>
[[AppendByteField]] <br/>
+
[[Core.Actions.AppendByteField|AppendByteField]] <br/>
[[ListConcatenate]] <br/>
+
[[Core.Actions.ListConcatenate|ListConcatenate]] <br/>
[[ListAppendItems]] <br/>
+
[[Core.Actions.ListAppendItems|ListAppendItems]] <br/>
[[ListInsertItems]] <br/>
+
[[Core.Actions.ListInsertItems|ListInsertItems]] <br/>
[[ListRemoveItems]] <br/>
+
[[Core.Actions.ListRemoveItems|ListRemoveItems]] <br/>
[[ListClear]] <br/>
+
[[Core.Actions.ListClear|ListClear]] <br/>
[[MapUnion]] <br/>
+
[[Core.Actions.MapUnion|MapUnion]] <br/>
[[MapRemoveItems]] <br/>
+
[[Core.Actions.MapRemoveItems|MapRemoveItems]] <br/>
[[MapClear]]
+
[[Core.Actions.MapClear|MapClear]]

Revision as of 01:52, 5 February 2016

Classification

Name MapPutItems
Short Description Inserts one or more elements in a map
Class Action
Extension OTX Core library
Group MapModifiers related actions
Exceptions -
Checker Rules Core_Chk038
Standard Compliant Yes

OTL Syntax

MapPutItems(MapVariable, {Key1:Value1, Key2:Value2, ...});

Description

The OTX MapPutItems activity inserts one or more elements in a map.

Icons Note.png The other map contains a key that is also present in the original map, the corresponding value in the original map is overwritten.

Properties

Name Data Type Class Default Cardinality Description
Map Map Variable - [1] Map of key/value pairs, in which the elements are inserted
Item - Term - [1] List of one or more elements of type of the map, which will be inserted into the map

OTL Examples

Map<Integer,Integer> Map1;

MapPutItems(Map1, {1:2, 2:3});

See also

Assignment
ProcedureCall
ShiftRight
ShiftLeft
SetBit
ReplaceSubByteField
AppendByteField
ListConcatenate
ListAppendItems
ListInsertItems
ListRemoveItems
ListClear
MapUnion
MapRemoveItems
MapClear