CharValue

data class CharValue(value: Char, manimObject: MObject) : DoubleAlias

Char Execution Value Class

Constructors

CharValue
Link copied to clipboard
fun CharValue(value: Char, manimObject: MObject = EmptyMObject)
: Creates a new CharValue.

Functions

clone
Link copied to clipboard
open override fun clone(): ExecValue
compareTo
Link copied to clipboard
operator fun compareTo(other: Any): Int
'==','!
component1
Link copied to clipboard
operator fun component1(): Char
component2
Link copied to clipboard
operator fun component2(): MObject
copy
Link copied to clipboard
fun copy(value: Char, manimObject: MObject = EmptyMObject): CharValue
div
Link copied to clipboard
operator fun div(other: ExecValue): ExecValue
'/'
equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open override 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
'*'
toDouble
Link copied to clipboard
open override fun toDouble(): Double
toInterpolatedString
Link copied to clipboard
open override fun toInterpolatedString(): String
toString
Link copied to clipboard
open override fun toString(): String

Properties

manimObject
Link copied to clipboard
open override var manimObject: MObject
: Manim Object corresponded to by the CharValue.
name
Link copied to clipboard
open override val name: String
: String name of value.
value
Link copied to clipboard
open override val value: Char
: Current char value.