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