KaValueParameterSymbol
Represents a value parameter of a function, constructor, and a property setter.
In Kotlin, we generally use the phrase "value parameter", as function have both value and type parameters.
Hierarchy
Inherits from KaVariableSymbol.
Members
val name: Name
The value parameter name.
val isNoinline: Boolean
true
if the value parameter has thenoinline
modifier.val isCrossinline: Boolean
true
if the value parameter has thecrossinline
modifier.val hasDefaultValue: Boolean
true
if the parameter has the default value.val isVararg: Boolean
true
if the parameter has thevararg
modifier.val isImplicitLambdaParameter: Boolean
true
if the parameter is the implicitly generatedit
lambda parameter.
Default values
Member | Value |
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
Last modified: 23 July 2024