Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for puts (0.13 sec)

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

        assertThat(copy).containsExactly(0, 1).inOrder();
      }
    
      public void testNewSetFromMapIllegal() {
        Map<Integer, Boolean> map = new LinkedHashMap<>();
        map.put(2, true);
        try {
          Sets.newSetFromMap(map);
          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
      /** The 0-ary cartesian product is a single empty list. */
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 49.3K bytes
    - Viewed (0)
Back to top