commonMain.dev.folomeev.kotgl.matrix.matrices.mutables.MutableMat.kt Maven / Gradle / Ivy
@file:kotlin.jvm.JvmName("MutableMat")
package dev.folomeev.kotgl.matrix.matrices.mutables
import dev.folomeev.kotgl.matrix.matrices.Mat
/** A mutable matrix. */
interface MutableMat : Mat {
/** Return a copy of the matrix as a new instance of [MutableMat]. */
override fun copyOf(): MutableMat
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy