Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for KotlinClosure3 (0.69 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/GroovyInteroperability.kt

     * @param function the function to be adapted.
     * @param owner optional owner of the Closure.
     * @param thisObject optional _this Object_ of the Closure.
     *
     * @see [Closure]
     */
    class KotlinClosure3<in T : Any?, in U : Any?, in V : Any?, R : Any>(
        val function: (T, U, V) -> R?,
        owner: Any? = null,
        thisObject: Any? = null
    ) : Closure<R?>(owner, thisObject) {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top