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.reduceRight()

Reduce a Set to a single, accumulated value by applying a provided function to each element. Iterates through elements from right to left. Uses the first element as the initial value.

Signature

reduceRight(reducer: ((A, A) => A)) => A | Null

Description

Iterates through each element in a Set to perform a rolling operation. For example, you can use reduceRight() to calculate a rolling sum, concatenate elements, or perform complex transformations.

reduceRight() calls a reducer callback function on every element of the Set from right to left. The reducer function takes two arguments:

  • The accumulator that holds the running result from previous iterations. The last element in the Set serves as the initial accumulator.

  • The current element’s value.

The method returns the result of the last iteration. The calling Set isn’t changed.

Eager loading

This method uses eager loading and requires a read of each document in the calling Set. For large Sets, this may result in poor performance and high costs.

Performance hint: full_set_read

Queries that call this method on a document Set emit a performance hint, if enabled. For example, the following query:

// Use `reduceRight()` to sum stock counts
let stockCounts = Product.all().map(doc => doc.stock)
stockCounts.reduceRight((a, b) => a + b)

Emits the following hint:

performance_hint: full_set_read - Using reduceRight() causes the full set to be read. See https://docs.fauna.com/performance_hint/full_set_read.
at *query*:3:24
  |
3 | stockCounts.reduceRight((a, b) => a + b)
  |                        ^^^^^^^^^^^^^^^^^
  |

To address the hint, use set.take() to explicitly limit the size of the calling Set to fewer than 100 documents:

// Limit the doc Set's size using `take()`
let stockCounts = Product.all().take(20).map(doc => doc.stock)
stockCounts.reduceRight((a, b) => a + b)

This applies even if the original, unbounded Set contains fewer than 100 documents.

Alternatively, you can rewrite the query to avoid calling the method.

Fold family methods

FQL supports several methods for folds, which iteratively reduce a Set to a single value. These methods include:

The methods are similar but have the following differences:

Parameters

Parameter Type Required Description

reducer

Function

Yes

Anonymous FQL function to call on each element in the Set.

Reducer function parameters:

Parameter Type Required Description

accumulator

Generic

Yes

Value returned by the previous reducer function call. On the first call, seed is passed as the accumulator.

current

Generic

Yes

The current element’s value.

Return value

One of:

Type Description

Generic

Result of the last reducer function call.

Null

Returns Null if the calling Set is empty.

Examples

Reduce the Set item, right to left:

// `toSet()` converts an Array to a Set.
let set = [1, 2, 3].toSet()
set.reduceRight((acc, elem) => acc + elem)
6

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!