7 references to SelectAsArray
Microsoft.CodeAnalysis (7)
DiagnosticAnalyzer\AnalyzerDriver.GroupedAnalyzerActions.cs (1)
58var groups = analyzers.SelectAsArray(
Generated\Operations.Generated.cs (2)
10794private ImmutableArray<T> VisitArray<T>(ImmutableArray<T> nodes) where T : IOperation => nodes.SelectAsArray((n, @this) => @this.Visit(n), this)!; 10795private ImmutableArray<(ISymbol, T)> VisitArray<T>(ImmutableArray<(ISymbol, T)> nodes) where T : IOperation => nodes.SelectAsArray((n, @this) => (n.Item1, @this.Visit(n.Item2)), this)!;
InternalUtilities\OneOrMany.cs (1)
134OneOrMany.Create(_many.SelectAsArray(selector, arg));
Operations\ControlFlowGraphBuilder.cs (3)
7659operation.Patterns.SelectAsArray((p, @this) => (IPatternOperation)@this.VisitRequired(p), this), 7673operation.DeconstructionSubpatterns.SelectAsArray((p, @this) => (IPatternOperation)@this.VisitRequired(p), this), 7674operation.PropertySubpatterns.SelectAsArray((p, @this) => (IPropertySubpatternOperation)@this.VisitRequired(p), this),