- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for testCartesianProduct_binary2x2 (0.16 sec)
-
guava-tests/test/com/google/common/collect/ListsTest.java
public void testCartesianProduct_binary1x2() { assertThat(cartesianProduct(list(1), list(2, 3))) .containsExactly(list(1, 2), list(1, 3)) .inOrder(); } public void testCartesianProduct_binary2x2() { assertThat(cartesianProduct(list(1, 2), list(3, 4))) .containsExactly(list(1, 3), list(1, 4), list(2, 3), list(2, 4)) .inOrder(); } public void testCartesianProduct_2x2x2() {
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 35.4K bytes - Viewed (0)