CBLFullTextIndexConfiguration
@interface CBLFullTextIndexConfiguration : CBLIndexConfiguration
/**
 Set the true value to ignore accents/diacritical marks. 
 */
@property (nonatomic, readonly) BOOL ignoreAccents;
/**
 The language code which is an ISO-639 language such as "en", "fr", etc.
 Setting the language code affects how word breaks and word stems are parsed.
 Without setting the value, the current locale's language will be used. Setting
 a nil or "" value to disable the language features.
 */
@property (nonatomic, readonly, nullable) NSString* language;
/**
 Constructor for creating a full-text index by using an array of expression strings
 */
- (instancetype) initWithExpression: (NSArray<NSString*>*)expressions
                      ignoreAccents: (BOOL)ignoreAccents
                           language: (NSString* __nullable)language;
@endUndocumented
- 
                  
                  Set the true value to ignore accents/diacritical marks. DeclarationObjective-C @property (nonatomic, readonly) BOOL ignoreAccents;
- 
                  
                  The language code which is an ISO-639 language such as “en”, “fr”, etc. Setting the language code affects how word breaks and word stems are parsed. Without setting the value, the current locale’s language will be used. Setting a nil or “” value to disable the language features. DeclarationObjective-C @property (nonatomic, readonly, nullable) NSString *language;
- 
                  
                  Constructor for creating a full-text index by using an array of expression strings DeclarationObjective-C - (nonnull instancetype)initWithExpression: (nonnull NSArray<NSString *> *)expressions ignoreAccents:(BOOL)ignoreAccents language:(NSString *_Nullable)language;
 CBLFullTextIndexConfiguration Class Reference
        CBLFullTextIndexConfiguration Class Reference