Skip to content

Commit

Permalink
update for new truthiness semantics (#858)
Browse files Browse the repository at this point in the history
  • Loading branch information
RaphaelDarley authored Sep 17, 2024
1 parent 7c3fecc commit 3895b43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/doc-surrealql/functions/database/array.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ The following example shows this function, and its output, when used in a [`RETU
```surql
RETURN array::boolean_and(["true", "false", 1, 1], ["true", "true", 0, "true"]);
[true, false, false, true]
[true, true, false, true]
```
For those that take two arrays, missing elements (if one array is shorter than the other) are considered `null` and thus false.

Expand Down

0 comments on commit 3895b43

Please sign in to comment.