Record Class NestedParam.Tuple

java.lang.Object
java.lang.Record
org.kink_lang.kink.internal.program.itree.NestedParam.Tuple
Record Components:
lvars - the local vars.
All Implemented Interfaces:
NestedParam
Enclosing interface:
NestedParam

public static record NestedParam.Tuple(List<LocalVar> lvars) extends Record implements NestedParam
Param which is a tuple of lvars.
  • Nested Class Summary

    Nested classes/interfaces inherited from interface org.kink_lang.kink.internal.program.itree.NestedParam

    NestedParam.Tuple
  • Constructor Summary

    Constructors
    Constructor
    Description
    Constructs a tuple.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Returns the arity of the params.
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    Returns the string representation as an LHS.
    Returns the value of the lvars record component.
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • Tuple

      public Tuple(List<LocalVar> lvars)
      Constructs a tuple.
      Parameters:
      lvars - the local vars.
  • Method Details

    • lhsRepr

      public String lhsRepr()
      Description copied from interface: NestedParam
      Returns the string representation as an LHS.
      Specified by:
      lhsRepr in interface NestedParam
      Returns:
      the string representation as an LHS.
    • arity

      public int arity()
      Returns the arity of the params.
      Returns:
      the arity of the params.
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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. All components in this record class are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • lvars

      public List<LocalVar> lvars()
      Returns the value of the lvars record component.
      Returns:
      the value of the lvars record component