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>
1 reference to IMinMaxCalc
System.Linq (1)
System\Linq\MaxMin.cs (1)
24where TMinMax : IMinMaxCalc<T>