Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for orderedAbs (0.13 sec)

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

       * constructor instead.
       *
       * @throws NullPointerException if {@code comparator} is null
       */
      public static <K, V> Builder<K, V> orderedBy(Comparator<K> comparator) {
        return new Builder<>(comparator);
      }
    
      /**
       * Returns a builder that creates immutable sorted maps whose keys are ordered by the reverse of
       * their natural ordering.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Sets.java

        return set;
      }
    
      /**
       * Creates a <i>mutable</i>, empty {@code TreeSet} instance with the given comparator.
       *
       * <p><b>Note:</b> if mutability is not required, use {@code
       * ImmutableSortedSet.orderedBy(comparator).build()} instead.
       *
       * <p><b>Note:</b> this method is now unnecessary and should be treated as deprecated. Instead,
       * use the {@code TreeSet} constructor directly, taking advantage of <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
Back to top