OperatorTreeNode

open class OperatorTreeNode : ATreeNode<Double>

Constructors

Link copied to clipboard
open fun OperatorTreeNode(op: Operator, left: ITreeNode<out Any>, right: ITreeNode<out Any>)

Functions

Link copied to clipboard
open fun equals(t: Any): Boolean
Link copied to clipboard
open fun getData(): T
Link copied to clipboard
open fun getLeftChild(): ITreeNode<out Any>
Link copied to clipboard
open fun getNumberOfChildren(): Int
Link copied to clipboard
open fun getRightChild(): ITreeNode<out Any>
Link copied to clipboard
open fun getType(): Type
Link copied to clipboard
open fun getValue(matches: Map<HashString, ITreeNode<out Any>>): Double
Link copied to clipboard
open fun hashCode(): Int
Link copied to clipboard
open fun toHashString(): HashString
Similar to toString(), but returns a HashString.
Link copied to clipboard
open fun toString(): String

Properties

Link copied to clipboard
private val operator: Operator