Pchp.Library.PhpMath.min C# (CSharp) Метод

min() публичный статический Метод

Find lowest value. If the first and only parameter is an array, min() returns the lowest value in that array. If at least two parameters are provided, min() returns the smallest of these values.
public static min ( ) : PhpValue
Результат Pchp.Core.PhpValue
		public static PhpValue min(params PhpValue[] numbers)
        {
            return GetExtreme(numbers, false);
        }

Same methods

PhpMath::min ( PhpArray array ) : PhpValue
PhpMath::min ( long a, long b ) : long