13 references to Min
Microsoft.CodeAnalysis.Remote.ServiceHub (1)
Services\DiagnosticAnalyzer\PerformanceQueue.cs (1)
167var minSpan = rawData.Select(kv => kv.timeSpan).Min();
Microsoft.Data.Analysis.Tests (4)
DataFrameTests.Computations.cs (4)
457Assert.Equal((byte)byteColumn.Min(), range.Select(x => (byte)x).Min()); 468Assert.Equal((uint)uintColumn.Min(), range.Select(x => (uint)x).Min()); 471Assert.Equal((ulong)ulongColumn.Min(), range.Select(x => (ulong)x).Min()); 474Assert.Equal((ushort)ushortColumn.Min(), range.Select(x => (ushort)x).Min());
Microsoft.DotNet.Build.Tasks.Packaging (1)
ValidatePackage.cs (1)
156Version minSupportedGeneration = allRuntimeGenerations.Concat(allSupportedGenerations).Min();
Microsoft.ML.AutoML (2)
Sweepers\SmacSweeper.cs (2)
182RunResult worstRun = (RunResult)previousRuns.Min(); 395RunResult worst = bestK.Min();
Microsoft.ML.Sweeper (3)
Algorithms\KdoSweeper.cs (1)
432RunResult worst = bestK.Min();
Algorithms\SmacSweeper.cs (2)
196RunResult worstRun = (RunResult)previousRuns.Min(); 386RunResult worst = bestK.Min();
System.Linq (2)
System\Linq\Min.cs (1)
297/// <para>If type <typeparamref name="TSource" /> implements <see cref="System.IComparable{T}" />, the <see cref="Min{T}(IEnumerable{T})" /> method uses that implementation to compare values. Otherwise, if type <typeparamref name="TSource" /> implements <see cref="System.IComparable" />, that implementation is used to compare values.</para>
System\Linq\OrderedEnumerable.SpeedOpt.cs (1)
397Min(_source) :