IndexBuilder
public class IndexBuilderIndex represents an index which could be a value index for regular queries or full-text index for full-text queries (using the match operator).
- 
                  
                  Create a value index with the given index items. The index items are a list of the properties or expressions to be indexed. DeclarationSwift public class func valueIndex(items: ValueIndexItem...) -> ValueIndexReturn ValueThe ValueIndex. 
- 
                  
                  Create a value index with the given index items. The index items are a list of the properties or expressions to be indexed. DeclarationSwift public class func valueIndex(items: [ValueIndexItem]) -> ValueIndexParametersitemsThe index items. Return ValueThe ValueIndex. 
- 
                  
                  Create a full-text index with the given index items. Typically the index items are the properties that are used to perform the match operation against with. DeclarationSwift public class func fullTextIndex(items: FullTextIndexItem...) -> FullTextIndexReturn ValueThe FullTextIndex. 
- 
                  
                  Create a full-text index with the given index items. Typically the index items are the properties that are used to perform the match operation against with. DeclarationSwift public class func fullTextIndex(items: [FullTextIndexItem]) -> FullTextIndexReturn ValueThe FullTextIndex. 
 IndexBuilder Class Reference
        IndexBuilder Class Reference