Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for retainOccurrences (0.09 sec)

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

       * multiset for every occurrence in {@code c}, see {@link Multisets#retainOccurrences(Multiset,
       * Multiset)}.
       *
       * <p>This method refines {@link Collection#retainAll} to further specify that it <b>may not</b>
       * throw an exception in response to any of {@code elements} being null or of the wrong type.
       *
       * @see Multisets#retainOccurrences(Multiset, Multiset)
       */
      @CanIgnoreReturnValue
      @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Multiset.java

       * multiset for every occurrence in {@code c}, see {@link Multisets#retainOccurrences(Multiset,
       * Multiset)}.
       *
       * <p>This method refines {@link Collection#retainAll} to further specify that it <b>may not</b>
       * throw an exception in response to any of {@code elements} being null or of the wrong type.
       *
       * @see Multisets#retainOccurrences(Multiset, Multiset)
       */
      @CanIgnoreReturnValue
      @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 21K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Multisets.java

       * other elements.
       *
       * @return {@code true} if {@code multisetToModify} was changed as a result of this operation
       * @since 10.0
       */
      @CanIgnoreReturnValue
      public static boolean retainOccurrences(
          Multiset<?> multisetToModify, Multiset<?> multisetToRetain) {
        return retainOccurrencesImpl(multisetToModify, multisetToRetain);
      }
    
      /** Delegate implementation which cares about the element type. */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Multisets.java

       * other elements.
       *
       * @return {@code true} if {@code multisetToModify} was changed as a result of this operation
       * @since 10.0
       */
      @CanIgnoreReturnValue
      public static boolean retainOccurrences(
          Multiset<?> multisetToModify, Multiset<?> multisetToRetain) {
        return retainOccurrencesImpl(multisetToModify, multisetToRetain);
      }
    
      /** Delegate implementation which cares about the element type. */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 41.5K bytes
    - Viewed (0)
Back to top