Is there some timeframe for when we can expect inl...
# announcements
f
Is there some timeframe for when we can expect inline functions declared in functions?
Copy code
fun method() {
    inline fun action() = doSomething(that, propably, has, many, args)
    if(condition) {
        action()
    } else {
        someAsync {
            action()
        }
    }
}