OTX Reference  
OpenTestSystem.Otx.Core.Terms.MapCopy Class Reference

Copy of all elements of a map More...

Inheritance diagram for OpenTestSystem.Otx.Core.Terms.MapCopy:
Inheritance graph

Public Attributes

MapTerm otherMap
 Reference to a map. More...
 
- Public Attributes inherited from OpenTestSystem.Otx.Core.Terms.Term
MetaData metaData
 Store additional More...
 

Detailed Description

Copy of all elements of a map

MapCopy is a term which returns the result as the copy of all elements of a map.

Syntax
MapTerm = MapCopy(MapTerm);
Examples
// Local Declarations
Map<Integer, String> map = {{1:"text1"}, {2:"text2"}};
Map<Integer, String> result;
// Flow
//Returns the result = {{1:"text1"}, {2;"text2"}};
result = MapCopy(map);

Member Data Documentation

◆ otherMap

MapTerm OpenTestSystem.Otx.Core.Terms.MapCopy.otherMap

Reference to a map.