Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

  1. 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)
  2. 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)
  3. 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: Sun Mar 08 16:16:42 GMT 2026
    - 30.4K bytes
    - Click Count (0)
  4. 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)
  5. 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