Nested Inline Functions - Any Negative Impacts?

Inline functions could be nested. There are some bizarre compiler bugs about nesting, but it works in general. On the other hand, manual inlining on JVM usually does not give performance boost. On the opposite, JVM internal inlining is smarter and faster than the manual one. So if you are doinig inlines to improve performance, you must measure it to be sure it became better.

1 Like