Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 9 of 9 for safeRemove (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. android/guava/src/com/google/common/collect/AbstractTable.java

      }
    
      @CanIgnoreReturnValue
      @Override
      public @Nullable V remove(@Nullable Object rowKey, @Nullable Object columnKey) {
        Map<C, V> row = safeGet(rowMap(), rowKey);
        return (row == null) ? null : Maps.safeRemove(row, columnKey);
      }
    
      @CanIgnoreReturnValue
      @Override
      public @Nullable V put(
          @ParametricNullness R rowKey, @ParametricNullness C columnKey, @ParametricNullness V value) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Aug 09 01:14:59 GMT 2025
    - 6K bytes
    - Click Count (0)
  2. guava/src/com/google/common/collect/AbstractTable.java

      }
    
      @CanIgnoreReturnValue
      @Override
      public @Nullable V remove(@Nullable Object rowKey, @Nullable Object columnKey) {
        Map<C, V> row = safeGet(rowMap(), rowKey);
        return (row == null) ? null : Maps.safeRemove(row, columnKey);
      }
    
      @CanIgnoreReturnValue
      @Override
      public @Nullable V put(
          @ParametricNullness R rowKey, @ParametricNullness C columnKey, @ParametricNullness V value) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  3. guava/src/com/google/common/collect/ConcurrentHashMultiset.java

            return standardContainsAll(collection);
          }
    
          @Override
          public boolean remove(@Nullable Object object) {
            return object != null && Collections2.safeRemove(delegate, object);
          }
    
          @Override
          public boolean removeAll(Collection<?> c) {
            return standardRemoveAll(c);
          }
        };
      }
    
      @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Dec 26 20:08:09 GMT 2025
    - 22.3K bytes
    - Click Count (0)
  4. guava/src/com/google/common/collect/Collections2.java

        }
      }
    
      /**
       * Delegates to {@link Collection#remove}. Returns {@code false} if the {@code remove} method
       * throws a {@code ClassCastException} or {@code NullPointerException}.
       */
      static boolean safeRemove(Collection<?> collection, @Nullable Object object) {
        checkNotNull(collection);
        try {
          return collection.remove(object);
        } catch (ClassCastException | NullPointerException e) {
          return false;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 23K bytes
    - Click Count (0)
  5. android/guava/src/com/google/common/collect/StandardTable.java

        }
    
        @Override
        public @Nullable V remove(@Nullable Object key) {
          updateBackingRowMapField();
          if (backingRowMap == null) {
            return null;
          }
          V result = Maps.safeRemove(backingRowMap, key);
          maintainEmptyInvariant();
          return result;
        }
    
        @Override
        public void clear() {
          updateBackingRowMapField();
          if (backingRowMap != null) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 29.4K bytes
    - Click Count (0)
  6. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

        }
      }
    
      /** Removes all values for the provided key. */
      private void removeValuesForKey(@Nullable Object key) {
        Collection<V> collection = Maps.safeRemove(map, key);
    
        if (collection != null) {
          int count = collection.size();
          collection.clear();
          totalSize -= count;
        }
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Nov 17 22:50:48 GMT 2025
    - 48.4K bytes
    - Click Count (0)
  7. android/guava/src/com/google/common/collect/Maps.java

        }
      }
    
      /**
       * Delegates to {@link Map#remove}. Returns {@code null} on {@code ClassCastException} and {@code
       * NullPointerException}.
       */
      static <V extends @Nullable Object> @Nullable V safeRemove(Map<?, V> map, @Nullable Object key) {
        checkNotNull(map);
        try {
          return map.remove(key);
        } catch (ClassCastException | NullPointerException e) {
          return null;
        }
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 157.6K bytes
    - Click Count (0)
  8. android/guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

        }
      }
    
      /** Removes all values for the provided key. */
      private void removeValuesForKey(@Nullable Object key) {
        Collection<V> collection = Maps.safeRemove(map, key);
    
        if (collection != null) {
          int count = collection.size();
          collection.clear();
          totalSize -= count;
        }
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Aug 12 15:51:57 GMT 2025
    - 46.9K bytes
    - Click Count (0)
  9. guava/src/com/google/common/collect/Maps.java

        }
      }
    
      /**
       * Delegates to {@link Map#remove}. Returns {@code null} on {@code ClassCastException} and {@code
       * NullPointerException}.
       */
      static <V extends @Nullable Object> @Nullable V safeRemove(Map<?, V> map, @Nullable Object key) {
        checkNotNull(map);
        try {
          return map.remove(key);
        } catch (ClassCastException | NullPointerException e) {
          return null;
        }
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 163.4K bytes
    - Click Count (0)
Back to Top