|
|
suspend fun <A> forall(vararg rows: Row1<A>, testfn: suspend (A) -> Unit): Unit
suspend fun <A, B> forall(vararg rows: Row2<A, B>, testfn: suspend (A, B) -> Unit): Unit
suspend fun <A, B, C> forall(vararg rows: Row3<A, B, C>, testfn: suspend (A, B, C) -> Unit): Unit
suspend fun <A, B, C, D> forall(vararg rows: Row4<A, B, C, D>, testfn: suspend (A, B, C, D) -> Unit): Unit
suspend fun <A, B, C, D, E> forall(vararg rows: Row5<A, B, C, D, E>, testfn: suspend (A, B, C, D, E) -> Unit): Unit
suspend fun <A, B, C, D, E, F> forall(vararg rows: Row6<A, B, C, D, E, F>, testfn: suspend (A, B, C, D, E, F) -> Unit): Unit
suspend fun <A, B, C, D, E, F, G> forall(vararg rows: Row7<A, B, C, D, E, F, G>, testfn: suspend (A, B, C, D, E, F, G) -> Unit): Unit
suspend fun <A, B, C, D, E, F, G, H> forall(vararg rows: Row8<A, B, C, D, E, F, G, H>, testfn: suspend (A, B, C, D, E, F, G, H) -> Unit): Unit
suspend fun <A, B, C, D, E, F, G, H, I> forall(vararg rows: Row9<A, B, C, D, E, F, G, H, I>, testfn: suspend (A, B, C, D, E, F, G, H, I) -> Unit): Unit
suspend fun <A, B, C, D, E, F, G, H, I, J> forall(vararg rows: Row10<A, B, C, D, E, F, G, H, I, J>, testfn: suspend (A, B, C, D, E, F, G, H, I, J) -> Unit): Unit |