CBLQueryArrayFunction
@interface CBLQueryArrayFunction : NSObjectCBLQueryArrayFunction provides array based functions.
- 
                  
                  Creates an ARRAY_CONTAINS(expr, value) function that checks whether the given array expression contains the given value or not. DeclarationObjective-C + (nonnull CBLQueryExpression *)contains: (nonnull CBLQueryExpression *)expression value:(nonnull CBLQueryExpression *)value;ParametersexpressionThe expression that evaluates to an array. valueThe value to search for in the given array expression. Return ValueThe ARRAY_CONTAINS(expr, value) function. 
- 
                  
                  Creates an ARRAY_LENGTH(expr) function that returns the length of the given array expression. DeclarationObjective-C + (nonnull CBLQueryExpression *)length:(nonnull CBLQueryExpression *)expression;ParametersexpressionThe expression that evaluates to an array. Return ValueThe ARRAY_LENGTH(expr) function. 
- 
                  
                  Not available DeclarationObjective-C - (nonnull instancetype)init;
 CBLQueryArrayFunction Class Reference
        CBLQueryArrayFunction Class Reference