Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for testForMapRemoveAll (0.07 seconds)

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

        map.put("foo", 1);
        map.put("bar", 2);
        Multimap<String, Integer> multimapView = Multimaps.forMap(map);
        SerializableTester.reserializeAndAssert(multimapView);
      }
    
      public void testForMapRemoveAll() {
        Map<String, Integer> map = new HashMap<>();
        map.put("foo", 1);
        map.put("bar", 2);
        map.put("cow", 3);
        Multimap<String, Integer> multimap = Multimaps.forMap(map);
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Oct 28 16:03:47 GMT 2025
    - 38.9K bytes
    - Click Count (0)
Back to Top