All Downloads are FREE. Search and download functionalities are using the official Maven repository.

alakazam.kotlin.core.PrefPair.kt Maven / Gradle / Ivy

There is a newer version: 4.7.0
Show newest version
package alakazam.kotlin.core

/**
 * Small utility class to carry both a preference key and its default value in the same container.
 * This is used alongside the extension functions below to abstract away (sort-of) the fetching of
 * preference values from the local data store.
 */
public data class PrefPair(
  val key: String,
  val default: T,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy