Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testCartesianProduct_binary1x0 (1.36 sec)

  1. android/guava-tests/test/com/google/common/collect/SetsTest.java

      }
    
      public void testCartesianProduct_binary0x1() {
        Set<Integer> mt = emptySet();
        assertEmpty(cartesianProduct(mt, set(1)));
      }
    
      public void testCartesianProduct_binary1x0() {
        Set<Integer> mt = emptySet();
        assertEmpty(cartesianProduct(set(1), mt));
      }
    
      private static void assertEmpty(Set<? extends List<?>> set) {
        assertTrue(set.isEmpty());
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 45.3K bytes
    - Viewed (0)
Back to top