Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for standardCount (0.11 sec)

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

       * you override {@link #entrySet}, you may wish to override {@link #count} to forward to this
       * implementation.
       *
       * @since 7.0
       */
      protected int standardCount(@Nullable Object object) {
        for (Entry<?> entry : this.entrySet()) {
          if (Objects.equals(entry.getElement(), object)) {
            return entry.getCount();
          }
        }
        return 0;
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 10.3K bytes
    - Viewed (0)
Back to top