AncestryNode

data class AncestryNode(    val typeConstructor: TypeConstructor,     val superclass: AncestryNode?,     val interfaces: List<AncestryNode>)

Constructors

Link copied to clipboard
fun AncestryNode(    typeConstructor: TypeConstructor,     superclass: AncestryNode?,     interfaces: List<AncestryNode>)

Functions

Link copied to clipboard
fun allImplementedInterfaces(): List<TypeConstructor>

Properties

Link copied to clipboard
val interfaces: List<AncestryNode>
Link copied to clipboard
val superclass: AncestryNode?
Link copied to clipboard
val typeConstructor: TypeConstructor