turansky
value class Age(value: Int) val age = Age(42) println(age) // AUTOBOX DISABLING REQUIRED
IrElementTransformer
age
IrGetValue
Ilmir Usmanov [JB]
mcpiroman
What’s your use-case to disable auto-boxing? What are you trying to achieve?
val delay = useDuration() val extraDelay = useMemo(delay /* AUTOBOX NOT REQUIRED */) { delay + delay } // from React external <T> fun useMemo( vararg dependencies: Any?, callback: () -> T, ): T
A modern programming language that makes developers happier.