Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for genericTypeOf (0.13 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/bytecode/KotlinMetadata.kt

        return kmProperty
    }
    
    
    internal
    fun genericTypeOf(type: KmType, argument: KmType): KmType {
        type.arguments += KmTypeProjection(KmVariance.INVARIANT, argument)
        return type
    }
    
    
    internal
    fun genericTypeOf(type: KmType, arguments: Iterable<KmType>): KmType {
        arguments.forEach { genericTypeOf(type, it) }
        return type
    }
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorFragments.kt

    import org.gradle.kotlin.dsl.support.bytecode.LDC
    import org.gradle.kotlin.dsl.support.bytecode.RETURN
    import org.gradle.kotlin.dsl.support.bytecode.actionTypeOf
    import org.gradle.kotlin.dsl.support.bytecode.genericTypeOf
    import org.gradle.kotlin.dsl.support.bytecode.internalName
    import org.gradle.kotlin.dsl.support.bytecode.jvmGetterSignatureFor
    import org.gradle.kotlin.dsl.support.bytecode.kotlinDeprecation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 40.2K bytes
    - Viewed (0)
Back to top