Back to Adaptive Vision Studio website

You are here: Start » Filter Reference » Array » Array Transforms » ReverseArray

ReverseArray


Module: FoundationLite

Creates an array of the input array elements in reversed order.

Name Type Description
inArray <T>Array Input array
outArray <T>Array Reversed array

The type of this filter is defined using the type variable T which represents any valid type. Read more.

Examples

Description of usage of this filter can be found in examples and tutorial: Rubber Ring.
inArray = {1,4,3,2,5} outArray = {5,2,3,4,1}

Complexity Level

This filter is available on Basic Complexity Level.

See Also

  • RotateArray – Cyclically shifts the elements of an array.