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

Copy of a list. More...

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

Public Attributes

ListTerm otherList
 Cardinality [1]
Describes the reference to a List. More...
 
- Public Attributes inherited from OpenTestSystem.Otx.Core.Terms.Term
MetaData metaData
 Cardinality [0..1]
The MetaData type allows tools to store additional, mainly tool-specific data. More...
 

Detailed Description

Copy of a list.

ListCopy is a term which contains the shallow copy of the items of another list.

Syntax
ListTerm = ListCopy(ListTerm);
Examples
// Local Declarations
List<Integer> list = {1,2,3};
List<Integer> result;
//Returns result = {1,2,3}
result = ListCopy(list);

Member Data Documentation

◆ otherList

ListTerm OpenTestSystem.Otx.Core.Terms.ListCopy.otherList

Cardinality [1]
Describes the reference to a List.