Kotlin Closure3
class KotlinClosure3<in T, in U, in V, R : Any>(val function: (T, U, V) -> R?, owner: Any? = null, thisObject: Any? = null) : Closure<R?> (source)
Adapts a ternary Kotlin function to a ternary Groovy Closure.
Parameters
function
the function to be adapted.
owner
optional owner of the Closure.
this Object
optional this Object of the Closure.
Type Parameters
T
the type of the first argument.
U
the type of the second argument.
V
the type of the third argument.
R
the return type.
See also
Closure