invoke
operator fun invoke(name: String, variance: KModifier? = null): TypeVariableName
Content copied to clipboard
Returns type variable named name with variance and without bounds.
operator fun invoke(name: String, vararg bounds: TypeName, variance: KModifier? = null): TypeVariableName
Content copied to clipboard
operator fun invoke(name: String, vararg bounds: KClass<*>, variance: KModifier? = null): TypeVariableName
Content copied to clipboard
operator fun invoke(name: String, vararg bounds: Type, variance: KModifier? = null): TypeVariableName
Content copied to clipboard
operator fun invoke(name: String, bounds: List<TypeName>, variance: KModifier? = null): TypeVariableName
Content copied to clipboard
operator fun invoke(name: String, bounds: Iterable<KClass<*>>, variance: KModifier? = null): TypeVariableName
Content copied to clipboard
Returns type variable named name with variance and bounds.