Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getExponent (0.16 sec)

  1. android/guava/src/com/google/common/math/DoubleMath.java

       */
      // #roundIntermediate, java.lang.Math.getExponent, com.google.common.math.DoubleUtils
      @GwtIncompatible
      public static BigInteger roundToBigInteger(double x, RoundingMode mode) {
        x = roundIntermediate(x, mode);
        if (MIN_LONG_AS_DOUBLE - x < 1.0 & x < MAX_LONG_AS_DOUBLE_PLUS_ONE) {
          return BigInteger.valueOf((long) x);
        }
        int exponent = getExponent(x);
        long significand = getSignificand(x);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 07 17:50:39 GMT 2024
    - 18.9K bytes
    - Viewed (0)
Back to top