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
 Describes the reference to a List. More...
 
- Public Attributes inherited from OpenTestSystem.Otx.Core.Terms.Term
MetaData metaData
 Store additional More...
 

Detailed Description

Copy of a list

ListCopy is a term which contains the shallow copy of the elements 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

Describes the reference to a List.