Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for terms (0.03 sec)

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

       * A sensible definition of {@link #contains} in terms of {@link #count}. If you override {@link
       * #count}, you may wish to override {@link #contains} to forward to this implementation.
       *
       * @since 7.0
       */
      @Override
      protected boolean standardContains(@CheckForNull Object object) {
        return count(object) > 0;
      }
    
      /**
       * A sensible definition of {@link #clear} in terms of the {@code iterator} method of {@link
    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. android/guava/src/com/google/common/collect/ForwardingMultiset.java

       * A sensible definition of {@link #contains} in terms of {@link #count}. If you override {@link
       * #count}, you may wish to override {@link #contains} to forward to this implementation.
       *
       * @since 7.0
       */
      @Override
      protected boolean standardContains(@CheckForNull Object object) {
        return count(object) > 0;
      }
    
      /**
       * A sensible definition of {@link #clear} in terms of the {@code iterator} method of {@link
    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