Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for removeOccurrences (0.05 sec)

  1. 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);
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 18:35:44 UTC 2025
    - 41.2K bytes
    - Viewed (0)
  2. 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);
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 18:35:44 UTC 2025
    - 41.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Multiset.java

       * cares whether or not an element appears at all. If you wish to remove one occurrence in this
       * multiset for every occurrence in {@code c}, see {@link Multisets#removeOccurrences(Multiset,
       * Multiset)}.
       *
       * <p>This method refines {@link Collection#removeAll} to further specify that it <b>may not</b>
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Multiset.java

       * cares whether or not an element appears at all. If you wish to remove one occurrence in this
       * multiset for every occurrence in {@code c}, see {@link Multisets#removeOccurrences(Multiset,
       * Multiset)}.
       *
       * <p>This method refines {@link Collection#removeAll} to further specify that it <b>may not</b>
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 20.9K bytes
    - Viewed (0)
Back to top