MutableLongState


A value holder where reads to the longValue property during the execution of a Composable function cause the current RecomposeScope to subscribe to changes of that value. When the longValue property is written to and changed, a recomposition of any subscribed RecomposeScopes will be scheduled. If longValue is written to with the same value, no recompositions will be scheduled.

Summary

Public properties

Long
Cmn
open Long
Cmn

Extension functions

inline operator Unit
MutableLongState.setValue(
    thisObj: Any?,
    property: KProperty<*>,
    value: Long
)

Permits property delegation of vars using by for MutableLongState.

Cmn

Inherited functions

From androidx.compose.runtime.MutableState
operator Long
Cmn
operator (Long) -> Unit
Cmn

Public properties

longValue

var longValueLong

value

open var valueLong

Extension functions

inline operator fun MutableLongState.setValue(
    thisObj: Any?,
    property: KProperty<*>,
    value: Long
): Unit

Permits property delegation of vars using by for MutableLongState.