FrequencyDictionary
data class FrequencyDictionary(val formatVersion: Int = FORMAT_VERSION.toInt(), val ngrams: Int, val locale: String, val termCount: Int, val terms: MutableMap<String, Long> = mutableMapOf<String, Long>())(source)
An in-memory frequency dictionary as decoded from a .fdic file.