Kotlin Closure2
class KotlinClosure2<in T, in U, V : Any>(val function: (T, U) -> V?, owner: Any? = null, thisObject: Any? = null) : Closure<V?> (source)
Adapts a binary Kotlin function to a binary Groovy Closure.
Parameters
T
the type of the first argument.
U
the type of the second argument.
V
the return type.
function
the function to be adapted.
owner
optional owner of the Closure.
this Object
optional this Object of the Closure.
See also
Closure
Constructors
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard