Package smile.util

Class IntPair

java.lang.Object
smile.util.IntPair

public class IntPair extends Object
A pair of integer.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final int
    The first integer.
    final int
    The second integer.
  • Constructor Summary

    Constructors
    Constructor
    Description
    IntPair(int i, int j)
    Constructor.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    int
     
     

    Methods inherited from class java.lang.Object

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

    • i

      public final int i
      The first integer.
    • j

      public final int j
      The second integer.
  • Constructor Details

    • IntPair

      public IntPair(int i, int j)
      Constructor.
      Parameters:
      i - the first integer.
      j - the second integer.
  • Method Details