- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for buildSorted (0.05 sec)
-
android/guava/src/com/google/common/collect/ImmutableList.java
* Returns a newly-created {@code ImmutableList} based on the contents of the {@code Builder}, * sorted according to the specified comparator. */ @SuppressWarnings("unchecked") ImmutableList<E> buildSorted(Comparator<? super E> comparator) { // Currently only used by ImmutableListMultimap.Builder.orderValuesBy. // In particular, this implies that the comparator can never get "removed," so this can'tRegistered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Sep 23 17:50:58 UTC 2025 - 27.5K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableList.java
contents.addAll(builder.contents); return this; } @Override public ImmutableList<E> build() { return copyOf(contents); } ImmutableList<E> buildSorted(Comparator<? super E> comparator) { Collections.sort(contents, comparator); return copyOf(contents); } }
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 18:32:41 UTC 2025 - 11.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableList.java
* Returns a newly-created {@code ImmutableList} based on the contents of the {@code Builder}, * sorted according to the specified comparator. */ @SuppressWarnings("unchecked") ImmutableList<E> buildSorted(Comparator<? super E> comparator) { // Currently only used by ImmutableListMultimap.Builder.orderValuesBy. // In particular, this implies that the comparator can never get "removed," so this can'tRegistered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Nov 17 22:50:48 UTC 2025 - 30.6K bytes - Viewed (0)