RadicalWithIndexSyntax

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

Represents radical syntax with index (3√x).

Author

Iaroslav Postovalov

Constructors

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

Properties

left
Link copied to clipboard
common
open override val left: MathSyntax
The index.
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.
right
Link copied to clipboard
common
open override val right: MathSyntax
The radicand.

Sources

common source
Link copied to clipboard