NodeTuple

class NodeTuple(val keyNode: Node, val valueNode: Node)

Stores one key value pair used in a map.

Parameters

keyNode

the node used as the key

valueNode

the node used as the value

Constructors

Link copied to clipboard
constructor(keyNode: Node, valueNode: Node)

Properties

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
operator fun component1(): Node
Link copied to clipboard
operator fun component2(): Node
Link copied to clipboard
open override fun toString(): String