Order reverser (mutable)

[data/array/Order reverser (mutable)]


Reverses the order of items in the received array. Mutates input! Example:

  1. [1,2,3]@0 received via array

  2. [3,2,1]@0 sent via reversed


Keywords: reverse

Input ports

  • array: any[]

    Recieves array to reserve. Example: [1,2,3]

Output ports

  • reversed: any[]

    Sends reversed array. Example: [3,2,1

Last updated