4 references to SelectMany
Microsoft.CodeAnalysis.UnitTests (1)
LineMappingTests.cs (1)
32var equalityUnits = lineMappings.SelectMany((left, leftIndex) => lineMappings.Select((right, rightIndex) => CreateEqualityUnit(left, leftIndex, right, rightIndex))).ToArray();
Microsoft.Interop.SourceGeneration (1)
DiagnosticOr.cs (1)
132var diagnostics = provider.SelectMany((arr, ct) => arr.Where(x => x.HasDiagnostic).SelectMany((x, ct) => x.Diagnostics));
Microsoft.ML.FastTree (1)
Dataset\DatasetUtils.cs (1)
55skel.QueryIds.SelectMany((qid, i) =>
System.Linq.Parallel (1)
System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs (1)
214return (IEnumerable<TOutput>)CancellableEnumerable.Wrap(Child.AsSequentialQuery(token), token).SelectMany(_indexedRightChildSelector);