CBLQueryFullTextFunction
@interface CBLQueryFullTextFunction : NSObjectFull-text function.
- 
                  
                  Deprecated Use [CBLQueryFullTextFunction rankWithIndex:] instead. Creates a full-text rank function with the given full-text index name. The rank function indicates how well the current query result matches the full-text query when performing the match comparison. DeclarationObjective-C + (nonnull CBLQueryExpression *)rank:(nonnull NSString *)indexName;ParametersindexNameThe full-text index name. Return ValueThe full-text rank function. 
- 
                  
                  Deprecated Use [CBLQueryFullTextFunction matchWithIndex: query:] instead. Creates a full-text match expression with the given full-text index name and the query text DeclarationObjective-C + (nonnull CBLQueryExpression *)matchWithIndexName:(nonnull NSString *)indexName query:(nonnull NSString *)query;ParametersindexNameThe full-text index name. queryThe query string. Return ValueThe full-text match expression. 
- 
                  
                  Creates a full-text rank() function with the given full-text index expression. The rank function indicates how well the current query result matches the full-text query when performing the match comparison. DeclarationObjective-C + (nonnull CBLQueryExpression *)rankWithIndex: (nonnull id<CBLQueryIndexExpressionProtocol>)index;Return ValueThe full-text rank function. 
- 
                  
                  Creates a full-text match() function with the given full-text index expression and the query text DeclarationObjective-C + (nonnull CBLQueryExpression *) matchWithIndex:(nonnull id<CBLQueryIndexExpressionProtocol>)index query:(nonnull NSString *)query;Return ValueThe full-text match() function expression. 
- 
                  
                  Unavailable Not available DeclarationObjective-C - (nonnull instancetype)init;
 CBLQueryFullTextFunction Class Reference
        CBLQueryFullTextFunction Class Reference