allNotIn.php
Table of Contents
Functions
- allNotIn() : string
- Returns an AQL expression that checks if **all elements** of an array are **not contained** in another array.
Functions
allNotIn()
Returns an AQL expression that checks if **all elements** of an array are **not contained** in another array.
allNotIn(mixed $leftOperand, mixed $rightOperand) : string
Equivalent to the ArangoDB ALL NOT IN array comparison operator.
Example:
[1, 2, 3] ALL NOT IN [4, 5, 6]returnstrue[1, 2, 3] ALL NOT IN [1, 2, 3]returnsfalse
Parameters
- $leftOperand : mixed
-
The array or expression to evaluate.
- $rightOperand : mixed
-
The array or expression to check membership against.
Tags
Return values
string —The AQL predicate string.