|
|
@ -180,9 +180,9 @@ namespace SixLabors.ImageSharp.Primitives |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
|
|
/// <inheritdoc/>
|
|
|
public bool Equals(DenseMatrix<T> other) => |
|
|
public bool Equals(DenseMatrix<T> other) => |
|
|
this.Columns == other.Columns && |
|
|
this.Columns == other.Columns && |
|
|
this.Rows == other.Rows && |
|
|
this.Rows == other.Rows && |
|
|
this.Span.SequenceEqual(other.Span); |
|
|
this.Span.SequenceEqual(other.Span); |
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
|
|
/// <inheritdoc/>
|
|
|
|