Inline functions are in the .h file, they can be called. However, they are regular functions and not inlined.
Let's describe an inline
function in Kotlin:
// InlineFunction.kt
inline fun inlineFunction(action: () -> Unit) {
println("InlineFunction.inlineFunction() begin")
action()
println("InlineFunction.inlineFunction() end")
}
In Swift, this function is also available, it can be called without problems:
InlineFunctionKt.inlineFunction {
print("I'm inside inline!!!")
}