Click or drag to resize

AEvalAT Function (Array OfT, FuncT, T)

X#
Execute a code block for each element in an array and assign the return value to each element in the array.

Namespace:  XSharp.RT
Assembly:  XSharp.RT (in XSharp.RT.dll) Version: 2.19
Syntax
 FUNCTION AEvalA<T>(
	aArray AS ARRAY OF<T>,
	cbBlock AS Func<T, T>
)
 AS ARRAY OF<T>
Request Example View Source

Parameters

aArray
Type: Array OfT
The array to traverse.
cbBlock
Type: FuncT, T
The code block to execute.

Type Parameters

T
The type of the array elements

Return Value

Type: Array OfT
A reference to aArray.
Remarks
AEvalA() is similar to AEval() in that they both evaluate a code block once for each element of an array, passing the element value as an argument.
The difference is that while AEval() ignores the return value of the code block, AEvalA() assigns the return value to the array element.
See AEval() for details.
Examples
This example uses AEvalA() to create an array of file names in lowercase:
X#
1FUNCTION Start()
2    LOCAL aFiles := Directory("*.dbf")
3    LOCAL nTotal AS SHORTINT
4    AEvalA(aFiles,{|aDBFFile| LOWER(PadR(aDBFFile[F_NAME], 10))})
See Also