Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testLog10Ceiling (0.1 sec)

  1. guava-tests/test/com/google/common/math/BigIntegerMathTest.java

            assertTrue(TEN.pow(result).compareTo(x) <= 0);
            assertTrue(TEN.pow(result + 1).compareTo(x) > 0);
          }
        }
      }
    
      @GwtIncompatible // TODO
      public void testLog10Ceiling() {
        for (BigInteger x : POSITIVE_BIGINTEGER_CANDIDATES) {
          for (RoundingMode mode : asList(CEILING, UP)) {
            int result = BigIntegerMath.log10(x, mode);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 27K bytes
    - Viewed (0)
Back to top