Home > Software design >  How can one access Kotlin's `backtickedFunctions` from Java?
How can one access Kotlin's `backtickedFunctions` from Java?

Time:07-30

TL;DR:

Is there a simple syntax in java to access kotlins backticked functions such as fun `if`(){...}

Long Version:

In Kotlin, one may write the following class.

class ShapeShifter {
    fun speak() { println("Hello fellow hooman") }
    fun `speakLikeA           
  • Related