Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isMathematicalInteger (1.11 sec)

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

        }
        return trueLog2;
      }
    
      @GwtIncompatible // DoubleMath.isMathematicalInteger
      public void testIsMathematicalIntegerIntegral() {
        for (double d : INTEGRAL_DOUBLE_CANDIDATES) {
          assertTrue(DoubleMath.isMathematicalInteger(d));
        }
      }
    
      @GwtIncompatible // DoubleMath.isMathematicalInteger
      public void testIsMathematicalIntegerFractional() {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Feb 07 17:50:39 GMT 2024
    - 28.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/math/DoubleMath.java

              return x;
            } else {
              return (long) x - 1;
            }
    
          case CEILING:
            if (x <= 0.0 || isMathematicalInteger(x)) {
              return x;
            } else {
              return (long) x + 1;
            }
    
          case DOWN:
            return x;
    
          case UP:
            if (isMathematicalInteger(x)) {
              return x;
            } else {
    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)
  3. guava-tests/test/com/google/common/math/DoubleMathTest.java

        }
        return trueLog2;
      }
    
      @GwtIncompatible // DoubleMath.isMathematicalInteger
      public void testIsMathematicalIntegerIntegral() {
        for (double d : INTEGRAL_DOUBLE_CANDIDATES) {
          assertTrue(DoubleMath.isMathematicalInteger(d));
        }
      }
    
      @GwtIncompatible // DoubleMath.isMathematicalInteger
      public void testIsMathematicalIntegerFractional() {
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Feb 07 17:50:39 GMT 2024
    - 28.1K bytes
    - Viewed (0)
Back to top