2 references to GetPooledFunction
Microsoft.CodeAnalysis.EditorFeatures (1)
IntelliSense\AsyncCompletion\Helpers.cs (1)
159
using var _ = PooledDelegates.
GetPooledFunction
(static (filterText, pattern) => filterText.StartsWith(pattern, StringComparison.CurrentCultureIgnoreCase), textTypedSoFar, out Func<string, bool> isPrefixMatch);
Microsoft.CodeAnalysis.Features (1)
Completion\CompletionService.ProviderManager.cs (1)
155
using var _ = PooledDelegates.
GetPooledFunction
(static (p, n) => p.Name == n, item.ProviderName, out Func<CompletionProvider, bool> isNameMatchingProviderPredicate);