Check out v4 of the Fauna CLI

v4 of the Fauna CLI is now in beta.

The new version introduces enhancements to the developer experience, including an improved authentication workflow. To get started, check out the CLI v4 quick start.

set.reverse()

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
  ]
}

Is this article helpful? 

Tell Fauna how the article can be improved:
Visit Fauna's forums or email docs@fauna.com

Thank you for your feedback!