RadicalSyntax

data class RadicalSyntax(operation: String, operand: MathSyntax) : UnarySyntax

Represents radical with a node inside it (√x).

Author

Iaroslav Postovalov

Constructors

RadicalSyntax
Link copied to clipboard
common
fun RadicalSyntax(operation: String, operand: MathSyntax)

Properties

operand
Link copied to clipboard
common
open override val operand: MathSyntax
The radicand.
operation
Link copied to clipboard
common
open override val operation: String
The operation token.
parent
Link copied to clipboard
common
var parent: MathSyntax? = null
The parent node of this syntax node.