Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for standardSetCount (0.32 sec)

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

       * override any of these methods, you may wish to override {@link #setCount(Object, int)} to
       * forward to this implementation.
       *
       * @since 7.0
       */
      protected int standardSetCount(@ParametricNullness E element, int count) {
        return Multisets.setCountImpl(this, element, count);
      }
    
      /**
       * A sensible definition of {@link #setCount(Object, int, int)} in terms of {@link #count(Object)}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ForwardingMultiset.java

       * override any of these methods, you may wish to override {@link #setCount(Object, int)} to
       * forward to this implementation.
       *
       * @since 7.0
       */
      protected int standardSetCount(@ParametricNullness E element, int count) {
        return Multisets.setCountImpl(this, element, count);
      }
    
      /**
       * A sensible definition of {@link #setCount(Object, int, int)} in terms of {@link #count(Object)}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 10.4K bytes
    - Viewed (0)
Back to top