times

operator fun <L, R> Iterable<L>.times(other: Iterable<R>): Iterable<Pair<L, R>>
operator fun <L, R> Array<L>.times(other: Array<R>): Iterable<Pair<L, R>>
operator fun <L, R> Array<L>.times(other: Iterable<R>): Iterable<Pair<L, R>>
operator fun <L, R> Iterable<L>.times(other: Array<R>): Iterable<Pair<L, R>>