allGreaterThanOrEqual.php
Table of Contents
Functions
- allGreaterThanOrEqual() : string
- Returns an AQL expression that checks if **all elements** of an array are greater than or equal to a given value.
Functions
allGreaterThanOrEqual()
Returns an AQL expression that checks if **all elements** of an array are greater than or equal to a given value.
allGreaterThanOrEqual(mixed $leftOperand, mixed $rightOperand) : string
Equivalent to the ArangoDB ALL >= array comparison operator.
Example:
[ 3, 4, 5 ] ALL >= 2returnstrue[ 1, 2, 3 ] ALL >= 2returnsfalse
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.