> public interface MutableState<T> : Stat...
# compose
l
public interface MutableState<T> : State<T>
A mutable value holder where reads to the value property during the execution of a Composable function, the current RecomposeScope will be subscribed to changes of that value.
To be honest I feel like some words are missing from this sentence...
2
"where reads to the value property"
Was it meant as "where reads of the value property during the execution... will cause the current RecomposeScope to be subscribed to changes of that value"?
a
hah, yeah feel free to file an issue on this, good catch
👍 1