Skip to content

Fix for any_match and all_match names #613

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions query-engine/Functions-and-operators/array.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ element of the same type:
```
### Array functions

#### allmatch()
**``allmatch(array(T), function(T,boolean))``** → boolean
#### all_match()
**``all_match(array(T), function(T,boolean))``** → boolean

Returns whether all elements of an array match the given predicate.
Returns `true` if all the elements match the predicate (a special case
is when the array is empty); `false` if one or more elements don\'t
match; `NULL` if the predicate function returns `NULL` for one or more
elements and `true` for all other elements.

#### anymatch()
#### any_match()
**``any_match(array(T), function(T,boolean))``** → boolean

Returns whether any elements of an array match the given predicate.
Expand Down