ExecValue

abstract class ExecValue

Abstract Execution Value Class

Constructors

ExecValue
Link copied to clipboard
fun ExecValue()

Functions

clone
Link copied to clipboard
abstract fun clone(): ExecValue
compareTo
Link copied to clipboard
operator fun compareTo(other: Any): Int
'==','!
div
Link copied to clipboard
operator fun div(other: ExecValue): ExecValue
'/'
equals
Link copied to clipboard
open operator fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open fun hashCode(): Int
minus
Link copied to clipboard
operator fun minus(other: ExecValue): ExecValue
'-'
not
Link copied to clipboard
operator fun not(): Boolean
'!
plus
Link copied to clipboard
operator fun plus(other: ExecValue): ExecValue
'+'
times
Link copied to clipboard
operator fun times(other: ExecValue): ExecValue
'*'
toInterpolatedString
Link copied to clipboard
open fun toInterpolatedString(): String
toString
Link copied to clipboard
open fun toString(): String

Properties

manimObject
Link copied to clipboard
abstract var manimObject: MObject
: Manim Object corresponded to by the Execution Value.
name
Link copied to clipboard
abstract val name: String
: String name of value.
value
Link copied to clipboard
abstract val value: Any
: Current value in Kotlin.

Inheritors

PrimitiveValue
Link copied to clipboard
EmptyValue
Link copied to clipboard
VoidValue
Link copied to clipboard
RuntimeError
Link copied to clipboard
BreakValue
Link copied to clipboard
ContinueValue
Link copied to clipboard
ArrayValue
Link copied to clipboard
Array2DValue
Link copied to clipboard
ITreeNodeValue
Link copied to clipboard
BinaryTreeValue
Link copied to clipboard
StackValue
Link copied to clipboard