ExponentSyntax

data class ExponentSyntax(operation: String, operand: OperandSyntax, useOperatorForm: Boolean) : UnarySyntax

Represents exponential function.

Author

Iaroslav Postovalov

Constructors

ExponentSyntax
Link copied to clipboard
common
fun ExponentSyntax(operation: String, operand: OperandSyntax, useOperatorForm: Boolean)

Properties

operand
Link copied to clipboard
common
open override val operand: OperandSyntax
The argument of function.
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.
useOperatorForm
Link copied to clipboard
common
var useOperatorForm: Boolean
true if operator form is used (exp (x)), false if exponentiation form is used (ex).

Sources

common source
Link copied to clipboard