Module org.kink_lang.kink
Record Class BiArithmeticItree
java.lang.Object
java.lang.Record
org.kink_lang.kink.internal.program.itree.BiArithmeticItree
- Record Components:
recv- the first operand of the arithmetic operation.op- the operator.arg- the second operand of the arithmetic operation.pos- the pos index of the itree.
public record BiArithmeticItree(Itree recv, BiArithmeticItree.Op op, BigDecimal arg, int pos)
extends Record
implements Itree
An arithmetic operation whose second operand is a number literal.
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from interface org.kink_lang.kink.internal.program.itree.ItreeElem
ItreeElem.Spread -
Constructor Summary
ConstructorsConstructorDescriptionBiArithmeticItree(Itree recv, BiArithmeticItree.Op op, BigDecimal arg, int pos) Creates an instance of aBiArithmeticItreerecord class. -
Method Summary
Modifier and TypeMethodDescription<T> Taccept(ItreeVisitor<T> visitor) Accepts a visitor.arg()Returns the value of theargrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.op()Returns the value of theoprecord component.intpos()Returns the value of theposrecord component.recv()Returns the value of therecvrecord component.final StringtoString()Returns a string representation of this record class.
-
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 '=='. -
recv
Returns the value of therecvrecord component.- Returns:
- the value of the
recvrecord component
-
op
Returns the value of theoprecord component.- Returns:
- the value of the
oprecord component
-
arg
Returns the value of theargrecord component.- Returns:
- the value of the
argrecord component
-
pos
public int pos()Returns the value of theposrecord component.
-