VarargFormalParameter

data class VarargFormalParameter(type: StaticType, arityRange: IntRange)

Represents a variable number of arguments function parameter. Varargs are monomorpic, i.e. all elements are of the same type

Parameters

type

StaticType that this parameter accepts

Constructors

Link copied to clipboard
fun VarargFormalParameter(type: StaticType, minCount: Int)
Link copied to clipboard
fun VarargFormalParameter(type: StaticType, arityRange: IntRange)

Functions

Link copied to clipboard
open override fun toString(): String

Properties

Link copied to clipboard
val arityRange: IntRange
Link copied to clipboard
val type: StaticType