RadicalWithIndexSyntax

data class RadicalWithIndexSyntax(operation: String, left: MathSyntax, right: MathSyntax) : BinarySyntax

Represents radical syntax with index (3√x).

Author

Iaroslav Postovalov

Constructors

Link copied to clipboard
fun RadicalWithIndexSyntax(operation: String, left: MathSyntax, right: MathSyntax)

Properties

Link copied to clipboard
open override val left: MathSyntax

The index.

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.

Link copied to clipboard
open override val right: MathSyntax

The radicand.

Sources

Link copied to clipboard