elect
operator
Platform declaration clash: The following declarations have the same JVM signature (plus-__B-jf8(JI)J):
inline fun Ptr<Byte>.`plus-__B-jf8`(offset: Int): Ptr<Byte> defined in kool
inline fun Ptr<Double>.`plus-__B-jf8`(offset: Int): Ptr<Double> defined in kool
inline fun Ptr<Float>.`plus-__B-jf8`(offset: Int): Ptr<Float> defined in kool
inline fun Ptr<Int>.`plus-__B-jf8`(offset: Int): Ptr<Int> defined in kool
inline fun Ptr<Long>.`plus-__B-jf8`(offset: Int): Ptr<Long> defined in kool
inline fun Ptr<Short>.`plus-__B-jf8`(offset: Int): Ptr<Short> defined in kool
Adam S
@JvmName
You can call functions that accept inline classes from Java code. To do so, you should manually disable mangling: add the @JvmName annotation before the function declaration
JvmName
operators
A modern programming language that makes developers happier.