Module org.kink_lang.kink
Record Class OptVecAssignmentItree
java.lang.Object
java.lang.Record
org.kink_lang.kink.internal.program.itree.OptVecAssignmentItree
- Record Components:
mandatory- the local vars of mandatory params.opt- the local vars of optional params.rhs- the right-hand-side.pos- the pos index of the assignment.
- All Implemented Interfaces:
Itree,ItreeElem,ItreeWithRhs
public record OptVecAssignmentItree(List<LocalVar> mandatory, List<LocalVar> opt, Itree rhs, int pos)
extends Record
implements ItreeWithRhs
Assignment in the form
[:A :B :C.opt :D.opt] <- xxx.-
Nested Class Summary
Nested classes/interfaces inherited from interface org.kink_lang.kink.internal.program.itree.ItreeElem
ItreeElem.Spread -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription<T> Taccept(ItreeVisitor<T> visitor) Accepts a visitor.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.lhsRepr()Returns the string representation of the left hand side.Returns the value of themandatoryrecord component.intmaxArity()Returns the maximum arity of the left hand side.intminArity()Returns the minimum arity of the left hand side.opt()Returns the value of theoptrecord component.intoptCount()Returns the count of opt parameters.intpos()Returns the value of theposrecord component.rhs()Returns the value of therhsrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
OptVecAssignmentItree
Constructs an assignment itree.- Parameters:
mandatory- the local vars of mandatory params.opt- the local vars of optional params.rhs- the right-hand-side.pos- the pos index of the assignment.
-
-
Method Details
-
lhsRepr
Returns the string representation of the left hand side.- Returns:
- the string representation of the left hand side.
-
minArity
public int minArity()Returns the minimum arity of the left hand side.- Returns:
- the minimum arity of the left hand side.
-
maxArity
public int maxArity()Returns the maximum arity of the left hand side.- Returns:
- the maximum arity of the left hand side.
-
optCount
public int optCount()Returns the count of opt parameters.- Returns:
- the count of opt parameters.
-
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 '=='. -
mandatory
Returns the value of themandatoryrecord component.- Returns:
- the value of the
mandatoryrecord component
-
opt
Returns the value of theoptrecord component.- Returns:
- the value of the
optrecord component
-
rhs
Returns the value of therhsrecord component.- Specified by:
rhsin interfaceItreeWithRhs- Returns:
- the value of the
rhsrecord component
-
pos
public int pos()Returns the value of theposrecord component.
-