mutableLongStateOf

Function

Common
@StateFactoryMarker
public fun mutableLongStateOf(value: Long): MutableLongState

Return a new MutableLongState initialized with the passed in value

The MutableLongState class is a single value holder whose reads and writes are observed by Compose. Additionally, writes to it are transacted as part of the Snapshot system. On the JVM, values are stored in memory as the primitive long type, avoiding the autoboxing that occurs when using MutableState<Long>.

Parameters

valuethe initial value for the MutableLongState