Override toString

This commit is contained in:
Iaroslav 2020-09-14 20:18:43 +07:00
parent 91d692381c
commit 2f2315f6cd
No known key found for this signature in database
GPG Key ID: 46E15E4A31B3BCD7

View File

@ -65,4 +65,6 @@ class EjmlMatrix(val origin: SimpleMatrix, features: Set<MatrixFeature>? = null)
result = 31 * result + features.hashCode() result = 31 * result + features.hashCode()
return result return result
} }
override fun toString(): String = "EjmlMatrix(origin=$origin, features=$features)"
} }