Is there a KEEP anywhere for how Kotlin plans to h...
# stdlib
k
Is there a KEEP anywhere for how Kotlin plans to handle wider numeric types once the JVM supports them with Valhalla? Eg. 128 bit integers or 80 bit floating point numbers. See: https://mail.openjdk.org/pipermail/valhalla-dev/2024-June/012571.html
1
Personally, I hope we somehow decouple ourselves from the
Byte
,
Short
,
Int
, and
Long
terminology, instead opting for
Int8
,
Int16
,
Int32
,
Int64
,
Int128
, etc. I know it probably won’t happen, but one can hope 🤞
💯 10