Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getSignificand (0.05 sec)

  1. guava/src/com/google/common/math/LongMath.java

              }
              // halfway between the representable values; do the half-whatever logic
              switch (mode) {
                case HALF_EVEN:
                  return ((DoubleUtils.getSignificand(roundFloorAsDouble) & 1L) == 0)
                      ? roundFloorAsDouble
                      : roundCeilingAsDouble;
                case HALF_DOWN:
                  return (x >= 0) ? roundFloorAsDouble : roundCeilingAsDouble;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Aug 29 16:20:07 UTC 2025
    - 46.8K bytes
    - Viewed (0)
Back to top