- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for falseFirst (0.05 sec)
-
guava-tests/test/com/google/common/collect/ComparisonChainTest.java
Bar(boolean isBaz) { this.isBaz = isBaz; } boolean isBaz() { return isBaz; } } /** * Validates that {@link Booleans#trueFirst()} and {@link Booleans#falseFirst()} can be used with * {@link Comparator} when replacing {@link ComparisonChain#compareTrueFirst} and {@link * ComparisonChain#compareFalseFirst}, as we document. */ public void testTrueFirstFalseFirst() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 03:05:13 UTC 2025 - 7.6K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Booleans.java
* * <p>This is particularly useful in Java 8+ in combination with {@code Comparator.comparing}, * e.g. {@code Comparator.comparing(Foo::hasBar, falseFirst())}. * * @since 21.0 */ public static Comparator<Boolean> falseFirst() { return BooleanComparator.FALSE_FIRST; } /** * Returns a hash code for {@code value}; obsolete alternative to {@link * Boolean#hashCode(boolean)}. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 20.5K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Booleans.java
* * <p>This is particularly useful in Java 8+ in combination with {@code Comparator.comparing}, * e.g. {@code Comparator.comparing(Foo::hasBar, falseFirst())}. * * @since 21.0 */ public static Comparator<Boolean> falseFirst() { return BooleanComparator.FALSE_FIRST; } /** * Returns a hash code for {@code value}; obsolete alternative to {@link * Boolean#hashCode(boolean)}. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 20.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/ComparisonChain.java
* <i>if</i> the result of this comparison chain has not already been determined. * * <p>Java 8+ users: you can get the equivalent from {@link Booleans#falseFirst()}. For example: * * <pre> * Comparator.comparing(Foo::isBar, {@link Booleans#falseFirst()}) * </pre> * * @since 12.0 (present as {@code compare} since 2.0) */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 11.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/BooleansTest.java
} public void testFalseFirst() { assertThat(Booleans.falseFirst().compare(true, true)).isEqualTo(0); assertThat(Booleans.falseFirst().compare(false, false)).isEqualTo(0); assertThat(Booleans.falseFirst().compare(false, true)).isLessThan(0); assertThat(Booleans.falseFirst().compare(true, false)).isGreaterThan(0); } // We need to test that our method behaves like the JDK method.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 25K bytes - Viewed (0)