class MatrixBuilder<T>
(source)
(common)
<init> |
MatrixBuilder() |
(common)
matrix |
val matrix: Matrix<T> |
(common)
add |
fun add(t: List<T>): Boolean |
(common)
plus |
operator fun plus(t: List<T>): Boolean |
(common)
row |
fun <T> MatrixBuilder<T>.row(block: RowBuilder<T>.() -> Unit): Unit |