RadicalSyntax

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

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

Author

Iaroslav Postovalov

Constructors

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

Properties

Link copied to clipboard
open override val operand: MathSyntax

The radicand.

Link copied to clipboard
open override val operation: String

The operation token.

Link copied to clipboard
var parent: MathSyntax? = null

The parent node of this syntax node.

Sources

Link copied to clipboard