You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[arrayMinimum(arrayExpression)](./firestore_lite_pipelines.md#arrayminimum_f574e12)| Creates an expression that returns the minimum value in an array. |
49
49
|[arrayMinimumN(arrayExpression, n)](./firestore_lite_pipelines.md#arrayminimumn_bff7f91)| Creates an expression that returns the smallest <code>n</code> elements of an array.<!---->Note: Returns the n smallest non-null elements in the array, in ascending order. This does not use a stable sort, meaning the order of equivalent elements is undefined. |
50
50
|[arrayMinimumN(arrayExpression, n)](./firestore_lite_pipelines.md#arrayminimumn_19b4ef8)| Creates an expression that returns the smallest <code>n</code> elements of an array.<!---->Note: Returns the n smallest non-null elements in the array, in ascending order. This does not use a stable sort, meaning the order of equivalent elements is undefined. |
51
-
|[arraySlice(arrayExpression, offset, length)](./firestore_lite_pipelines.md#arrayslice_a349bee)| Creates an expression that returns a subset of an array. |
51
+
|[arraySlice(arrayExpression, offset, length)](./firestore_lite_pipelines.md#arrayslice_a349bee)| Creates an expression that returns a slice of an array from <code>offset</code> with <code>length</code> elements. |
52
52
|[arrayTransform(arrayExpression, elementAlias, transform)](./firestore_lite_pipelines.md#arraytransform_28967fa)| Creates an expression that applies a provided transformation to each element in an array. |
53
53
|[arrayTransformWithIndex(arrayExpression, elementAlias, indexAlias, transform)](./firestore_lite_pipelines.md#arraytransformwithindex_2f3b17f)| Creates an expression that applies a provided transformation to each element in an array, providing the element's index to the transformation expression. |
54
54
|[join(arrayExpression, delimiterExpression)](./firestore_lite_pipelines.md#join_313e6aa)| Creates an expression that joins the elements of an array into a string. |
|[arrayMinimum(fieldName)](./firestore_lite_pipelines.md#arrayminimum_e5b0480)| Creates an expression that returns the minimum value in an array. |
180
180
|[arrayMinimumN(fieldName, n)](./firestore_lite_pipelines.md#arrayminimumn_597a4d9)| Creates an expression that returns the smallest <code>n</code> elements of an array.<!---->Note: Returns the n smallest non-null elements in the array, in ascending order. This does not use a stable sort, meaning the order of equivalent elements is undefined. |
181
181
|[arrayMinimumN(fieldName, n)](./firestore_lite_pipelines.md#arrayminimumn_1a86a2c)| Creates an expression that returns the smallest <code>n</code> elements of an array.<!---->Note: Returns the n smallest non-null elements in the array, in ascending order. This does not use a stable sort, meaning the order of equivalent elements is undefined. |
182
-
|[arraySlice(fieldName, offset, length)](./firestore_lite_pipelines.md#arrayslice_821aa43)| Creates an expression that returns a subset of an array. |
182
+
|[arraySlice(fieldName, offset, length)](./firestore_lite_pipelines.md#arrayslice_821aa43)| Creates an expression that returns a slice of an array from <code>offset</code> with <code>length</code> elements. |
183
183
|[arraySum(fieldName)](./firestore_lite_pipelines.md#arraysum_e5b0480)| Creates an expression that computes the sum of the elements in an array. |
184
184
|[arrayTransform(fieldName, elementAlias, transform)](./firestore_lite_pipelines.md#arraytransform_328a090)| Creates an expression that applies a provided transformation to each element in an array. |
185
185
|[arrayTransformWithIndex(fieldName, elementAlias, indexAlias, transform)](./firestore_lite_pipelines.md#arraytransformwithindex_e6629b2)| Creates an expression that applies a provided transformation to each element in an array, providing the element's index to the transformation expression. |
| [arrayMinimum(arrayExpression)](./firestore_pipelines.md#arrayminimum_f574e12) | Creates an expression that returns the minimum value in an array. |
49
49
| [arrayMinimumN(arrayExpression, n)](./firestore_pipelines.md#arrayminimumn_bff7f91) | Creates an expression that returns the smallest <code>n</code> elements of an array.<!-- -->Note: Returns the n smallest non-null elements in the array, in ascending order. This does not use a stable sort, meaning the order of equivalent elements is undefined. |
50
50
| [arrayMinimumN(arrayExpression, n)](./firestore_pipelines.md#arrayminimumn_19b4ef8) | Creates an expression that returns the smallest <code>n</code> elements of an array.<!-- -->Note: Returns the n smallest non-null elements in the array, in ascending order. This does not use a stable sort, meaning the order of equivalent elements is undefined. |
51
-
|[arraySlice(arrayExpression, offset, length)](./firestore_pipelines.md#arrayslice_a349bee)| Creates an expression that returns a subset of an array. |
51
+
| [arraySlice(arrayExpression, offset, length)](./firestore_pipelines.md#arrayslice_a349bee) | Creates an expression that returns a slice of an array from <code>offset</code> with <code>length</code> elements. |
52
52
| [arrayTransform(arrayExpression, elementAlias, transform)](./firestore_pipelines.md#arraytransform_28967fa) | Creates an expression that applies a provided transformation to each element in an array. |
53
53
| [arrayTransformWithIndex(arrayExpression, elementAlias, indexAlias, transform)](./firestore_pipelines.md#arraytransformwithindex_2f3b17f) | Creates an expression that applies a provided transformation to each element in an array, providing the element's index to the transformation expression. |
54
54
| [join(arrayExpression, delimiterExpression)](./firestore_pipelines.md#join_313e6aa) | Creates an expression that joins the elements of an array into a string. |
| [arrayMinimum(fieldName)](./firestore_pipelines.md#arrayminimum_e5b0480) | Creates an expression that returns the minimum value in an array. |
180
180
| [arrayMinimumN(fieldName, n)](./firestore_pipelines.md#arrayminimumn_597a4d9) | Creates an expression that returns the smallest <code>n</code> elements of an array.<!-- -->Note: Returns the n smallest non-null elements in the array, in ascending order. This does not use a stable sort, meaning the order of equivalent elements is undefined. |
181
181
| [arrayMinimumN(fieldName, n)](./firestore_pipelines.md#arrayminimumn_1a86a2c) | Creates an expression that returns the smallest <code>n</code> elements of an array.<!-- -->Note: Returns the n smallest non-null elements in the array, in ascending order. This does not use a stable sort, meaning the order of equivalent elements is undefined. |
182
-
|[arraySlice(fieldName, offset, length)](./firestore_pipelines.md#arrayslice_821aa43)| Creates an expression that returns a subset of an array. |
182
+
| [arraySlice(fieldName, offset, length)](./firestore_pipelines.md#arrayslice_821aa43) | Creates an expression that returns a slice of an array from <code>offset</code> with <code>length</code> elements. |
183
183
| [arraySum(fieldName)](./firestore_pipelines.md#arraysum_e5b0480) | Creates an expression that computes the sum of the elements in an array. |
184
184
| [arrayTransform(fieldName, elementAlias, transform)](./firestore_pipelines.md#arraytransform_328a090) | Creates an expression that applies a provided transformation to each element in an array. |
185
185
| [arrayTransformWithIndex(fieldName, elementAlias, indexAlias, transform)](./firestore_pipelines.md#arraytransformwithindex_e6629b2) | Creates an expression that applies a provided transformation to each element in an array, providing the element's index to the transformation expression. |
0 commit comments