noneNotEqual.php
Table of Contents
Functions
- noneNotEqual() : string
- Returns an AQL expression that checks if none of the elements of an array are equal to a value (i.e., all elements are different).
Functions
noneNotEqual()
Returns an AQL expression that checks if none of the elements of an array are equal to a value (i.e., all elements are different).
noneNotEqual(mixed $leftOperand, mixed $rightOperand) : string
Equivalent to the ArangoDB NONE != array comparison operator.
Example:
[ 1, 2, 3 ] NONE != 4returnstrue[ 1, 2, 3 ] NONE != 3returnsfalse
Parameters
- $leftOperand : mixed
-
The array or expression to evaluate.
- $rightOperand : mixed
-
The value or expression to compare against.
Tags
Return values
string —The AQL predicate string.