assertk / assertk / Table3

Table3

(common, jvm) class Table3<C1, C2, C3> : Table

A table with rows of 3 values.

See Also

tableOf

Functions

(common, jvm)

forAll

Runs the given lambda for each row in the table.

fun forAll(f: (C1, C2, C3) -> Unit): Unit
(common, jvm)

row

Adds a row to the table with the given values.

fun row(val1: C1, val2: C2, val3: C3): Table3<C1, C2, C3>