The Fauna service will be ending on May 30, 2025.

For more information on the service wind down, see our announcement and the Fauna Service End-of-Life FAQ.

set.reverse()

Learn: Sets

Reverse the order of a Set's elements.

Loading strategy:

Signature

reverse() => Set<A>

Description

Reverses the order of the calling Set's elements.

The calling Set isn’t changed.

Parameters

None

Return value

Type Description

Set<Generic>

Set containing reversed elements.

Examples

// `toSet()` converts an Array to a Set.
let set = [1, 2, 3].toSet()
set.reverse()
{
  data: [
    3,
    2,
    1
  ]
}
\