Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update processing.md #705

Merged
merged 1 commit into from
Sep 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/processing.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Stage | Syntax | Action
__Filter__ | seq`[`expr`]` | Filter results from previous stage by applying predicate expression between brackets to each item.
__Sort__ | seq`^(`expr`)` | Sorts (re-orders) the input sequence according to the criteria in parentheses.
__Index__ | seq`#`$var | Binds a named variable to the current context position (zero offset) in the sequence.
__Join__ | seq`@`$var | Binds a named variable to the current current context item in the sequence. Can only be used directly following a map stage.
__Join__ | seq`@`$var | Binds a named variable to the current context item in the sequence. Can only be used directly following a map stage.
__Reduce__ | seq`{` expr`:`expr`,` expr`:`expr ...`}` | Group and aggregate the input sequence to a single result object as defined by the name/value expressions. Can only appear as the final stage in a path expression.

In the above table:
Expand Down
Loading