Interface CharMatrix

    • Method Detail

      • getChar

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

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