Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getOrCreate (0.04 sec)

  1. guava/src/com/google/common/collect/StandardTable.java

          size += map.size();
        }
        return size;
      }
    
      // Mutators
    
      @Override
      public void clear() {
        backingMap.clear();
      }
    
      private Map<C, V> getOrCreate(R rowKey) {
        Map<C, V> map = backingMap.get(rowKey);
        if (map == null) {
          map = factory.get();
          backingMap.put(rowKey, map);
        }
        return map;
      }
    
      @CanIgnoreReturnValue
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 30.2K bytes
    - Viewed (0)
Back to top