Arrays
Generate_ArrayInt32
Inputs
- Start: int
- End: int
- Function: Delegate
- FInt32Int32Delegate:
int => int
Description
Generates an array of integers by applying a function to the index of the given range
and returns the resulting array.
Parameters
Generate_ArrayInt32FromInt32
Inputs
- Feed: int
- Start: int
- End: int
- Function: Delegate
- FInt32Int32ToInt32Delegate:
int, int => int
Description
Generates an array of integers by applying a function to an input integer and the index of the given range
and returns the resulting array.
Parameters
-
Feed: The input integer to be used in the function.
-
Start: The starting index of the range.
-
End: The ending index of the range exclusive.
Merge_Any
Inputs
- ArrayA: object
- ArrayB: object
- Result: object
Description
Merges two arrays of the same type into a new array without modifying the originals.
This function is immutable and similar to the built-in "Append Array" node.
Parameters
-
ArrayA: The first input array.
-
ArrayB: The second input array.
-
Result: The resulting merged array.
MkString
Inputs
- Array: string Array
- Separator: string
Description
Concatenates the elements of an array into a single FString, separated by the specified separator.
This function is immutable and does not modify the input array.
Parameters
MkString_Int32
Inputs
- Array: int Array
- Separator: string
Description
Concatenates the elements of an int32 array into a single FString, separated by the specified separator.
Parameters