Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for checkTryParse (0.24 sec)

  1. android/guava-tests/test/com/google/common/primitives/DoublesTest.java

        for (double d : NUMBERS) {
          checkTryParse(d, Double.toHexString(d));
        }
      }
    
      @GwtIncompatible // Doubles.tryParse
      public void testTryParseNaN() {
        checkTryParse("NaN");
        checkTryParse("+NaN");
        checkTryParse("-NaN");
      }
    
      @GwtIncompatible // Doubles.tryParse
      public void testTryParseInfinity() {
        checkTryParse(Double.POSITIVE_INFINITY, "Infinity");
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Dec 11 20:45:32 UTC 2025
    - 30.9K bytes
    - Viewed (0)
Back to top