Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for maintainEmptyInvariant (0.09 sec)

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

            return null;
          }
          V result = Maps.safeRemove(backingRowMap, key);
          maintainEmptyInvariant();
          return result;
        }
    
        @Override
        public void clear() {
          updateBackingRowMapField();
          if (backingRowMap != null) {
            backingRowMap.clear();
          }
          maintainEmptyInvariant();
        }
    
        @Override
        public int size() {
          updateBackingRowMapField();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 30.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/TreeBasedTable.java

            }
            if (upperBound != null) {
              map = map.headMap(upperBound);
            }
            return map;
          }
          return null;
        }
    
        @Override
        void maintainEmptyInvariant() {
          updateWholeRowField();
          if (wholeRow != null && wholeRow.isEmpty()) {
            backingMap.remove(rowKey);
            wholeRow = null;
            backingRowMap = null;
          }
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 18 15:05:43 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/TreeBasedTable.java

            }
            if (upperBound != null) {
              map = map.headMap(upperBound);
            }
            return map;
          }
          return null;
        }
    
        @Override
        void maintainEmptyInvariant() {
          updateWholeRowField();
          if (wholeRow != null && wholeRow.isEmpty()) {
            backingMap.remove(rowKey);
            wholeRow = null;
            backingRowMap = null;
          }
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 18 15:05:43 UTC 2025
    - 11.6K bytes
    - Viewed (0)
Back to top