Applies an action script operation or class operation (operationName) to each element of an array (destinationArrayName).
Syntax | apply operationName (element [, additionalParameter]) to destinationArrayName
|
|---|
Semantics | Applies an action script operation or class operation (operationName) to each element of an array (destinationArrayName). element is a keyword and denotes any single element of destinationArrayName. |
|---|
Substitutables | operationName
| Can be any action script operation or class operation name. |
|---|
anArray, destinationArrayName
| Can be any variable or object attribute having the type Array. |
Examples |
CODE
set changedElements = apply concat(element, "_x") to inputContainer.myList;
set normalizedElements = apply normalizeSpaces(element) to inputContainer.myList;
apply element.calculateAmmount() to exchangesList;
|
|---|