Patcher.Rules.Compiled.Helpers.Math.Min C# (CSharp) Method

Min() public static method

Retrieves the lesser of the specified floating point numbers.
public static Min ( float a, float b ) : float
a float First floating point number to compare.
b float Second floating point number to compare.
return float
        public static float Min(float a, float b)
        {
            return System.Math.Min(a, b);
        }

Same methods

Math::Min ( int a, int b ) : int
Math::Min ( short a, short b ) : short