I can call a Kotlin function from C++ like this: `...
# kotlin-native
d
I can call a Kotlin function from C++ like this:
Copy code
libnative_symbols()->kotlin.root.ch.digorydoo.kangaroo.doSomething(42);
Is the call to libnative_symbol() fast enough so I can do this on every call (from a C++ macro)? Or should I cache the result in a variable?
🔖 2
l
This seems like a great thing to benchmark. Would be really good to know.