Area-CompilersArea-Performancehelp wanted
Repository metrics
- Stars
- (20,414 stars)
- PR merge metrics
- (平均マージ 6d 17h) (30d で 256 merged PRs)
説明
Type checking here is 2.8% of CPU time. A good portion of it happens for symbols.
Would the following be more efficient?
if (symbol.Kind == SymbolKind.KindWeLookFor)
{
return Unsafe.As<SymbolTypeToCastTo>(symbol);
}