FullTextFunction
public final class FullTextFunctionFull-text function factory.
- 
                  
                  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. DeclarationSwift @available(*, deprecated, message: "Use FullTextFunction.rank(withIndex:﹚ instead.") public static func rank(_ indexName: String) -> ExpressionProtocolParametersindexNameThe index name. Return ValueThe full-text rank function. 
- 
                  
                  Creates a full-text match expression with the given full-text index name and the query text DeclarationSwift @available(*, deprecated, message: "Use FullTextFunction.match(withIndex:query﹚ instead.") public static func match(indexName: String, query: String) -> ExpressionProtocolParametersindexNameThe index name. queryThe query string. Return ValueThe full-text match function 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. DeclarationSwift public static func rank(_ index: IndexExpressionProtocol) -> ExpressionProtocolParametersindexThe full-text index expression. Return ValueThe full-text rank function. 
- 
                  
                  Creates a full-text match() function with the given full-text index expression and the query text DeclarationSwift public static func match(_ index: IndexExpressionProtocol, query: String) -> ExpressionProtocolParametersindexNameTThe full-text index expression. queryThe query string. Return ValueThe full-text match() function expression. 
 FullTextFunction Class Reference
        FullTextFunction Class Reference