java.lang.Object
java.lang.Record
org.kink_lang.kink.internal.program.itree.IfItree
- Record Components:
cond- the condition.trueFun- the true fun.falseFun- the optional false fun.pos- the pos index of this itree.
public record IfItree(Itree cond, FastFunItree trueFun, Optional<FastFunItree> falseFun, int pos)
extends Record
implements Itree
An itree of invocation of
if preloaded fun.
This itree must show up in a FastFunItree.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.kink_lang.kink.internal.program.itree.ItreeElem
ItreeElem.Spread -
Constructor Summary
ConstructorsConstructorDescriptionIfItree(Itree cond, FastFunItree trueFun, Optional<FastFunItree> falseFun, int pos) Creates an instance of aIfItreerecord class. -
Method Summary
Modifier and TypeMethodDescription<T> Taccept(ItreeVisitor<T> visitor) Accepts a visitor.cond()Returns the value of thecondrecord component.final booleanIndicates whether some other object is "equal to" this one.falseFun()Returns the value of thefalseFunrecord component.final inthashCode()Returns a hash code value for this object.intpos()Returns the value of theposrecord component.final StringtoString()Returns a string representation of this record class.trueFun()Returns the value of thetrueFunrecord component.
-
Constructor Details
-
Method Details
-
accept
Description copied from interface:ItreeAccepts a visitor. -
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
cond
Returns the value of thecondrecord component.- Returns:
- the value of the
condrecord component
-
trueFun
Returns the value of thetrueFunrecord component.- Returns:
- the value of the
trueFunrecord component
-
falseFun
Returns the value of thefalseFunrecord component.- Returns:
- the value of the
falseFunrecord component
-
pos
public int pos()Returns the value of theposrecord component.
-