Hm. I don’t think that your first `intBitsToFloat`...
# getting-started
e
Hm. I don’t think that your first
intBitsToFloat
should be an extension to a float type at all. Why whold it need a
Float
instance? It looks like you wanted an extension to
Int
type like
fun Int.intBitsToFloat() = java.lang.Float.intBitsToFloat(this)
👍 2