2 implementations of IMinMaxCalc
System.Linq (2)
System\Linq\Max.cs (1)
16
private readonly struct MaxCalc<T> :
IMinMaxCalc
<T> where T : struct, IBinaryInteger<T>
System\Linq\Min.cs (1)
16
private readonly struct MinCalc<T> :
IMinMaxCalc
<T> where T : struct, IBinaryInteger<T>
1 reference to IMinMaxCalc
System.Linq (1)
System\Linq\MaxMin.cs (1)
24
where TMinMax :
IMinMaxCalc
<T>