asFloatState
Function
Common
public fun State<Float>.asFloatState(): FloatState
Converts a State<Float>
(as in, a State
of boxed Float
s) into a primitive-backed Float
.
The state will be automatically unboxed to the required primitive type. The returned state is
read-only. The returned state will mirror the values of the base state and apply updates in the
same way as the receiver defines.
On the JVM, this conversion does not avoid the autoboxing that Float
attempts to escape, but
instead is intended to allow interoperability between components that use either representation
of a state of type Float
.