FullTextIndex

expect class FullTextIndex : Index(source)

Index for Full-Text search

actual class FullTextIndex : Index(source)
actual class FullTextIndex : Index(source)

Properties

Link copied to clipboard
Link copied to clipboard
expect var language: String?
actual var language: String?
actual var language: String?

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
expect fun ignoreAccents(ignoreAccents: Boolean): FullTextIndex

Set the true value to ignore accents/diacritical marks. The default value is false.

actual fun ignoreAccents(ignoreAccents: Boolean): FullTextIndex
actual fun ignoreAccents(ignoreAccents: Boolean): FullTextIndex
Link copied to clipboard
expect fun setLanguage(language: String?): FullTextIndex

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.

actual fun setLanguage(language: String?): FullTextIndex
actual fun setLanguage(language: String?): FullTextIndex
Link copied to clipboard
open override fun toString(): String