Reverse Slice
CallableReverseSliceReverses a portion of an array between two indices.
Type: Callable (has execution pins)
Category: Fortuna|Array & Collection
Keywords: array & collection
Inputs
| Name | Type | Default | Description |
|---|---|---|---|
| Array | TArray<int> | — | Array parameter |
| StartIndex | int | — | StartIndex parameter |
| EndIndex | int | — | EndIndex parameter |
Outputs
| Name | Type | Description |
|---|---|---|
| ReversedSlice | TArray<int> | Array output |
Example Use Cases
Example 1
Reverse a segment of a path.
Example 2
Undo a portion of a sequence.