- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for referenceTryParse (0.04 sec)
-
android/guava-tests/test/com/google/common/primitives/DoublesTest.java
} /** * A reference implementation for {@code tryParse} that just catches the exception from {@link * Double#valueOf}. */ private static @Nullable Double referenceTryParse(String input) { if (input.trim().length() < input.length()) { return null; } try { return Double.valueOf(input); } catch (NumberFormatException e) { return null;Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 11 20:45:32 UTC 2025 - 30.9K bytes - Viewed (0)