cartesianProductOfInts

fun cartesianProductOfInts(a: Set<Int>, b: Set<Int>, vararg sets: Set<Int>): List<List<Int>>

Computes the cartesian product of the sets of ints and returns a list holding the rows of the cartesian product with each row represented as a list.