Interface LongMatrix

    • Method Detail

      • getLong

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

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