The Kotlin reflection KFunction representing this function. Provides access to Kotlin-specific metadata and reflection capabilities.
The underlying Java Method object for this function. This method is guaranteed to be non-null for accessible functions.
The name of the function, inherited from the Named interface. Returns the simple name of the underlying Kotlin function.
The Java Class representing the type of the target object. This is derived from the declaring class of the function.
Invokes the function on the specified target object with the given arguments. Uses FastInvoke.safeInvoke for proper exception handling and performance.