Difference between revisions of "Core.Actions.MapRemoveItems"
Jump to navigation
Jump to search
Line 26: | Line 26: | ||
== 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/> |
− | [[MapPutItems]] <br/> | + | [[Core.Actions.MapPutItems|MapPutItems]] <br/> |
− | [[MapClear]] | + | [[Core.Actions.MapClear|MapClear]] |
Revision as of 01:53, 5 February 2016
Classification
Name | MapRemoveItems |
Short Description | Deletes one or more elements from a map |
Class | Action |
Extension | OTX Core library |
Group | MapModifiers related actions |
Exceptions | OutOfBoundsException |
Checker Rules | Core_Chk039 |
Standard Compliant | Yes |
OTL Syntax
MapRemoveItems(MapVariable, {Key1, Key2, ...});
Description
The OTX MapRemoveItems activity deletes one or more elements from a map.
Properties
Name | Data Type | Class | Default | Cardinality | Description |
Map | Map | Variable | - | [1] | Map of key/values pairs, from which the items are deleted |
Key | - | Term | - | [1] | List of one or more keys of type of the map to be deleted from the map |
OTL Examples
Map<Integer,Integer> Map1 = {1:2, 2:3};
MapRemoveItems(Map1, {1, 2});
See also
Assignment
ProcedureCall
ShiftRight
ShiftLeft
SetBit
ReplaceSubByteField
AppendByteField
ListConcatenate
ListAppendItems
ListInsertItems
ListRemoveItems
ListClear
MapUnion
MapPutItems
MapClear