hasSameMatrixData method

bool hasSameMatrixData(
  1. Artifact other
)

Returns true when another artifact has identical normalized pixel data.

Implementation

bool hasSameMatrixData(Artifact other) {
  return cols == other.cols && listEquals(_matrix, other._matrix);
}