Binary

data class Binary(operation: String, left: MST, right: MST) : MST

A node containing binary operation.

Constructors

Binary
Link copied to clipboard
common
fun Binary(operation: String, left: MST, right: MST)

Properties

left
Link copied to clipboard
common
val left: MST
the left operand.
operation
Link copied to clipboard
common
val operation: String
the identifier operation.
right
Link copied to clipboard
common
val right: MST
the right operand.

Sources

common source
Link copied to clipboard