Module org.kink_lang.kink
Record Class ItreeElem.Spread
java.lang.Object
java.lang.Record
org.kink_lang.kink.internal.program.itree.ItreeElem.Spread
- Record Components:
expr
- the expression in the elem.pos
- the pos of the elem on the program text.
- All Implemented Interfaces:
ItreeElem
- Enclosing interface:
- ItreeElem
ItreeElem of SPREAD type.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.kink_lang.kink.internal.program.itree.ItreeElem
ItreeElem.Spread
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.expr()
Returns the value of theexpr
record component.final int
hashCode()
Returns a hash code value for this object.boolean
isSingle()
Returns whether the type is SINGLE.int
pos()
Returns the value of thepos
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
Method Details
-
isSingle
public boolean isSingle()Description copied from interface:ItreeElem
Returns whether the type is SINGLE. -
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 '=='. -
expr
Returns the value of theexpr
record component. -
pos
public int pos()Returns the value of thepos
record component.
-