- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for Compound (0.07 sec)
-
android/guava-tests/test/com/google/common/collect/OrderingTest.java
Ordering<Number> unusedF = numbers.compound(objects).compound(objects); // bad IDEA Ordering<Number> unusedG = objects.compound(numbers).compound(objects); Ordering<Number> unusedH = objects.compound(objects).compound(numbers); Ordering<Number> unusedI = numbers.compound(objects.compound(objects)); Ordering<Number> unusedJ = objects.compound(numbers.compound(objects)); // bad IDEA
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 42.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/OrderingTest.java
Ordering<Number> unusedF = numbers.compound(objects).compound(objects); // bad IDEA Ordering<Number> unusedG = objects.compound(numbers).compound(objects); Ordering<Number> unusedH = objects.compound(objects).compound(numbers); Ordering<Number> unusedI = numbers.compound(objects.compound(objects)); Ordering<Number> unusedJ = objects.compound(numbers.compound(objects)); // bad IDEA
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 42.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Ordering.java
* status and second by priority, you might use {@code byStatus.compound(byPriority)}. For a * compound ordering with three or more components, simply chain multiple calls to this method. * * <p>An ordering produced by this method, or a chain of calls to this method, is equivalent to * one created using {@link Ordering#compound(Iterable)} on the same component comparators. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 39.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/Ordering.java
* status and second by priority, you might use {@code byStatus.compound(byPriority)}. For a * compound ordering with three or more components, simply chain multiple calls to this method. * * <p>An ordering produced by this method, or a chain of calls to this method, is equivalent to * one created using {@link Ordering#compound(Iterable)} on the same component comparators. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 39.4K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/features/CollectionSize.java
public Set<Feature<? super Collection>> getImpliedFeatures() { return implied; } public int getNumElements() { if (numElements == null) { throw new IllegalStateException( "A compound CollectionSize doesn't specify a number of elements."); } return numElements; } @Retention(RetentionPolicy.RUNTIME) @Inherited @TesterAnnotation public @interface Require {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 3.4K bytes - Viewed (0)