Java Number Min Value min(float value1, float value2)

Here you can find the source of min(float value1, float value2)

Description

min

License

Open Source License

Declaration

public static float min(float value1, float value2) 

Method Source Code

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

public class Main {
    public static float min(float value1, float value2) {
        return Math.min(value1, value2);
    }/*from   ww  w. ja v a 2  s. c  om*/
}

Related

  1. min(float a, float b)
  2. min(float a, float b)
  3. min(float a, float b, float c, float d, float e)
  4. min(float dirOffset, float min, float max)
  5. min(float value1, float value2)
  6. min(float x0, float x1)
  7. min(int a, int b)
  8. min(int a, int b)
  9. min(int a, int b)