BinaryTreeNodeElemAccessNode

data class BinaryTreeNodeElemAccessNode(lineNumber: Int, identifier: String, accessChain: List<DataStructureMethod>) : BinaryTreeNodeAccess

Binary tree node elem access node

Represents access to a nodes in a binary tree e.g. node.left.right.value

Constructors

BinaryTreeNodeElemAccessNode
Link copied to clipboard
fun BinaryTreeNodeElemAccessNode(lineNumber: Int, identifier: String, accessChain: List<DataStructureMethod>)
Create empty Binary tree node elem access node

Functions

component1
Link copied to clipboard
operator fun component1(): Int
component2
Link copied to clipboard
operator fun component2(): String
component3
Link copied to clipboard
operator fun component3(): List<DataStructureMethod>
copy
Link copied to clipboard
fun copy(lineNumber: Int, identifier: String, accessChain: List<DataStructureMethod>): BinaryTreeNodeElemAccessNode
equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open override fun hashCode(): Int
toString
Link copied to clipboard
open override fun toString(): String

Properties

accessChain
Link copied to clipboard
val accessChain: List<DataStructureMethod>
identifier
Link copied to clipboard
open override var identifier: String
lineNumber
Link copied to clipboard
open override val lineNumber: Int