Returns the smallest of three numbers.
Namespace: Extreme.Mathematics.Generic
Assembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 4.2.11333.0 (4.2.12253.0)
Syntax
| C# |
public static T Min<T>(
this IGroupOperations<T> ops,
T value1,
T value2,
T value3
)
|
| Visual Basic (Declaration) |
<ExtensionAttribute> _
Public Shared Function Min(Of T) ( _
ops As IGroupOperations(Of T), _
value1 As T, _
value2 As T, _
value3 As T _
) As T
|
| F# |
static member Min :
ops:IGroupOperations<'T> *
value1:'T *
value2:'T *
value3:'T -> 'T
|
Type Parameters
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IGroupOperations<(Of <(<'T>)>)>. When you use instance method syntax to call this method, omit the first parameter.
See Also