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

androidMain.com.bselzer.ktx.livedata.immutable.nullsafe.SafeLongLiveData.kt Maven / Gradle / Ivy

The newest version!
package com.bselzer.ktx.livedata.immutable.nullsafe

/**
 * Null-safe live data for longs.
 * @param defaultValue the initial value to store. It is also the value to set upon resetting the instance.
 */
open class SafeLongLiveData(defaultValue: Long = 0L) : SafeImmutableLiveData(defaultValue)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy