- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for falseFirst (0.06 sec)
-
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}; equal to the result of invoking {@code ((Boolean) * value).hashCode()}. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 20.4K 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}; equal to the result of invoking {@code ((Boolean) * value).hashCode()}. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 20.4K 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); } public void testCompare() { for (boolean x : VALUES) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 24.8K bytes - Viewed (0)