Classification
Pseudo-Code Syntax
Value = MapGetKeyList(MapTerm)
Description
MapGetKeyList is a term, which returns a list of the keys of a map as a result.
|
|
|
Important: Please keep in mind that this TermActivity in the form of an activity exists and no text can be entered. According to the respective ActionNode can further properties are added.
|
Return Value
The Term returns the value, see table below.
|
|
In OTX, Terms are categorized according to its return data type!
|
Data Type |
Description
|
List |
Return of a list of the keys of the map as items
|
Properties
Name |
Data Type |
Class |
Default |
Cardinality |
Description
|
MapTerm |
Map |
Term |
- |
[1] |
Map which to be calculated
|
Examples
Map<Integer, String> map = {{1, "text1"}, {2, "text2"}}
List<Integer> result = MapGetKeyList(map)
//Returns result = {1, 2}
See also
MapContainsKey
MapContainsValue
MapGetSize
MapGetValueList
MapCopy