ImmutableKmValueParameter

Immutable representation of KmValueParameter.

Represents a value parameter of a Kotlin constructor, function or property setter.

data class ImmutableKmValueParameter : ImmutableKmWithFlags

Functions

component1
Link copied to clipboard
operator fun component1(): Flags
component2
Link copied to clipboard
operator fun component2(): String
component3
Link copied to clipboard
operator fun component3(): ImmutableKmType?
component4
Link copied to clipboard
operator fun component4(): ImmutableKmType?
copy
Link copied to clipboard
fun copy(flags: Flags, name: String, type: ImmutableKmType?, varargElementType: ImmutableKmType?): ImmutableKmValueParameter
equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open override fun hashCode(): Int
toMutable
Link copied to clipboard
fun toMutable(): KmValueParameter
toString
Link copied to clipboard
open override fun toString(): String

Properties

flags
Link copied to clipboard

Value parameter flags, consisting of Flag.ValueParameter flags.

open override val flags: Flags
name
Link copied to clipboard

The name of the value parameter.

val name: String
type
Link copied to clipboard

Type of the value parameter, if this is not a vararg parameter.

val type: ImmutableKmType?
varargElementType
Link copied to clipboard

Type of the value parameter, if this is a vararg parameter.

val varargElementType: ImmutableKmType?

Extensions

declaresDefaultValue
Link copied to clipboard
val ImmutableKmValueParameter.declaresDefaultValue: Boolean
isCrossInline
Link copied to clipboard
val ImmutableKmValueParameter.isCrossInline: Boolean
isNoInline
Link copied to clipboard
val ImmutableKmValueParameter.isNoInline: Boolean