Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for standardRemove (0.06 sec)

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

       * you override {@link #remove(Object, int)}, you may wish to override {@link #remove(Object)} to
       * forward to this implementation.
       *
       * @since 7.0
       */
      @Override
      protected boolean standardRemove(@Nullable Object element) {
        return remove(element, 1) > 0;
      }
    
      /**
       * A sensible definition of {@link #removeAll} in terms of the {@code removeAll} method of {@link
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ForwardingMap.java

       *
       * <p>Alternately, you may wish to override {@link #remove} with {@code keySet().remove}, assuming
       * that approach would not lead to an infinite loop.
       *
       * @since 7.0
       */
      protected @Nullable V standardRemove(@Nullable Object key) {
        Iterator<Entry<K, V>> entryIterator = entrySet().iterator();
        while (entryIterator.hasNext()) {
          Entry<K, V> entry = entryIterator.next();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 17:32:30 UTC 2025
    - 9.8K bytes
    - Viewed (0)
Back to top