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.

SubstitutablesoperationNameCan be any action script operation or class operation name.
anArray, destinationArrayNameCan be any variable or object attribute having the type Array.
Examples
set changedElements = apply concat(element, "_x") to inputContainer.myList;
set normalizedElements = apply normalizeSpaces(element) to inputContainer.myList;
apply element.calculateAmmount() to exchangesList;
  • No labels