Here you can find the source of minF(float a, float b)
public static float minF(float a, float b)
//package com.java2s; //License from project: LGPL public class Main { /**//from ww w.j ava 2s.c o m * Unchecked implementation to determine the smaller of two Floats. Parameters should be known to be valid in advance. */ public static float minF(float a, float b) { return a < b ? a : b; } public static float minF(int a, float b) { return a < b ? a : b; } public static float minF(float a, int b) { return a < b ? a : b; } }