Skip to content

reverse

Module Export

[value] |> [value]

Returns an iterator in the opposite direction.

Examples

import 'iterators'
from [1,2,3] reverse

Result:

[3,2,1]