I'd like Kotlin to include function return type in...
# language-proposals
e
I'd like Kotlin to include function return type in the signature.
Copy code
operator fun ByteBuffer.get(index: Int): Byte = ..
operator fun ByteBuffer.get(index: Int): Int = ..
Swift does that and it's great and the JVM underneath does include the function return type in the signature
1