public class Table3<C1,C2,C3>
extends Table
A table with rows of 3 values.
TableKt.tableOf| Modifier and Type | Method and Description |
|---|---|
void |
forAll(kotlin.jvm.functions.Function3<? super C1,? super C2,? super C3,kotlin.Unit> f)
Runs the given lambda for each row in the table.
|
Table3<C1,C2,C3> |
row(C1 val1,
C2 val2,
C3 val3)
Adds a row to the table with the given values.
|
public Table3<C1,C2,C3> row(C1 val1, C2 val2, C3 val3)
Adds a row to the table with the given values.
public void forAll(kotlin.jvm.functions.Function3<? super C1,? super C2,? super C3,kotlin.Unit> f)
Runs the given lambda for each row in the table.