Interface IntMatrix

    • Method Detail

      • getInt

        int getInt​(long... coordinates)
        Returns an int representation of an entry in the matrix. The stored value will be converted to an int as good as possible.
        Parameters:
        coordinates - location of the entry
        Returns:
        an int representation of the entry @
      • setInt

        void setInt​(int value,
                    long... coordinates)
        Sets an entry in the matrix to an int value. If the matrix cannot store int values, the value will be represented as good as possible.
        Parameters:
        value - int value
        coordinates - location of the entry @