Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Sqrt (0.11 sec)

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

       *     sqrt(x)} is not an integer
       */
      @GwtIncompatible // TODO
      @SuppressWarnings("fallthrough")
      public static BigInteger sqrt(BigInteger x, RoundingMode mode) {
        checkNonNegative("x", x);
        if (fitsInLong(x)) {
          return BigInteger.valueOf(LongMath.sqrt(x.longValue(), mode));
        }
        BigInteger sqrtFloor = sqrtFloor(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