Java Number Min Value minDivisibleNumber(float yourDividend, float divisor)

Here you can find the source of minDivisibleNumber(float yourDividend, float divisor)

Description

min Divisible Number

License

Open Source License

Declaration

public static float minDivisibleNumber(float yourDividend, float divisor) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static float minDivisibleNumber(float yourDividend, float divisor) {
        return yourDividend - (yourDividend % divisor);
    }/* w  w  w .j  a  v a  2  s . c  om*/
}

Related

  1. minCoverageEstimate(short mask)
  2. minCurveSegmentLength(String segmentTypeName)
  3. minDark(final int colorValue)
  4. minDeg2Bigger(long number)
  5. minDelta(double a, double b)
  6. minF(float a, float b)
  7. minFileBuf(long fileSize, int bufSize)
  8. minifiedJS(String url)
  9. minifyPubkey(String pubkey)