Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for removeEntryImpl (0.17 sec)

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

            return Sets.equalsImpl(delegate(), o);
          }
        }
    
        @Override
        public boolean remove(@CheckForNull Object o) {
          synchronized (mutex) {
            return Maps.removeEntryImpl(delegate(), o);
          }
        }
    
        @Override
        public boolean removeAll(Collection<?> c) {
          synchronized (mutex) {
            return Iterators.removeAll(delegate().iterator(), c);
          }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Synchronized.java

            return Sets.equalsImpl(delegate(), o);
          }
        }
    
        @Override
        public boolean remove(@CheckForNull Object o) {
          synchronized (mutex) {
            return Maps.removeEntryImpl(delegate(), o);
          }
        }
    
        @Override
        public boolean removeAll(Collection<?> c) {
          synchronized (mutex) {
            return Iterators.removeAll(delegate().iterator(), c);
          }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Maps.java

       * @param o the object to remove from {@code c}
       * @return {@code true} if {@code c} was changed
       */
      static <K extends @Nullable Object, V extends @Nullable Object> boolean removeEntryImpl(
          Collection<Entry<K, V>> c, @CheckForNull Object o) {
        if (!(o instanceof Entry)) {
          return false;
        }
        return c.remove(unmodifiableEntry((Entry<?, ?>) o));
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Maps.java

       * @param o the object to remove from {@code c}
       * @return {@code true} if {@code c} was changed
       */
      static <K extends @Nullable Object, V extends @Nullable Object> boolean removeEntryImpl(
          Collection<Entry<K, V>> c, @CheckForNull Object o) {
        if (!(o instanceof Entry)) {
          return false;
        }
        return c.remove(unmodifiableEntry((Entry<?, ?>) o));
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 167.4K bytes
    - Viewed (0)
Back to top