interface Dictionary
A collection of words that may become inaccessible at any moment in time.
abstract val words: Set<String>
The words in the dictionary. |
open fun isValid(): Boolean
Returns |
|
abstract fun validate(): Unit
Throws an InvalidDictionaryException iff this dictionary is currently invalid. |
class BundledDictionary : Dictionary
A |
|
data class DictionaryReference : Dictionary
References a dictionary by its properties. |
|
class UserDictionary : Dictionary
A |