RadicalSyntax

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

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

Author

Iaroslav Postovalov

Constructors

Link copied to clipboard
constructor(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

The parent node of this syntax node.