Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for removeOccurrences (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/Multisets.java

       *     Multiset})
       */
      @CanIgnoreReturnValue
      public static boolean removeOccurrences(
          Multiset<?> multisetToModify, Iterable<?> occurrencesToRemove) {
        if (occurrencesToRemove instanceof Multiset) {
          return removeOccurrences(multisetToModify, (Multiset<?>) occurrencesToRemove);
        } else {
          checkNotNull(multisetToModify);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 41.3K bytes
    - Click Count (0)
  2. guava/src/com/google/common/collect/Multisets.java

       *     Multiset})
       */
      @CanIgnoreReturnValue
      public static boolean removeOccurrences(
          Multiset<?> multisetToModify, Iterable<?> occurrencesToRemove) {
        if (occurrencesToRemove instanceof Multiset) {
          return removeOccurrences(multisetToModify, (Multiset<?>) occurrencesToRemove);
        } else {
          checkNotNull(multisetToModify);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 41.2K bytes
    - Click Count (0)
Back to Top