FqType

@Serializable
data class FqType(val names: List<String>, val variance: FqType.Variance = Invariant, val parameterTypes: List<FqType> = emptyList(), val nullable: Boolean = false)

Constructors

Link copied to clipboard
constructor(names: List<String>, variance: FqType.Variance = Invariant, parameterTypes: List<FqType> = emptyList(), nullable: Boolean = false)

Types

Link copied to clipboard
object Companion
Link copied to clipboard

Properties

Link copied to clipboard

The package name followed by one or more simple names. The package may be empty. A star projection is represented by an empty package and a single "*" simple name.

Link copied to clipboard
val nullable: Boolean = false
Link copied to clipboard
Link copied to clipboard

Functions

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