Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TreeMultiset (0.15 sec)

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

       */
      @SuppressWarnings("unchecked")
      public static <E extends @Nullable Object> TreeMultiset<E> create(
          @CheckForNull Comparator<? super E> comparator) {
        return (comparator == null)
            ? new TreeMultiset<E>((Comparator) Ordering.natural())
            : new TreeMultiset<E>(comparator);
      }
    
      /**
       * Creates an empty multiset containing the given initial elements, sorted according to the
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 34.2K bytes
    - Viewed (0)
Back to top