FunctionExpression

data class FunctionExpression(val type: AstTypes = AstTypes.FUNCTION, val value: Function) : AstMember(source)

Function Expression type of the kind AstMember

This member of the AST tree stores a Function

Since

Version 1.0

See also

Constructors

Link copied to clipboard
constructor(type: AstTypes = AstTypes.FUNCTION, value: Function)

Properties

Link copied to clipboard
open override val type: AstTypes

: by default is AstTypes.FUNCTION

Link copied to clipboard
open override val value: Function

: the ComplexNumber that it stores

Functions

Link copied to clipboard
operator fun component1(): AstTypes
Link copied to clipboard
operator fun component2(): Function
Link copied to clipboard
fun copy(type: AstTypes = AstTypes.FUNCTION, value: Function): FunctionExpression
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String