4 references to all
tlens (4)
TLens\LensesCollection.cs (4)
70public static IEnumerable<LensAnalyzerDetails> All => all; 72public static IEnumerable<Analyzer> AllAnalyzers => all.Select(l => l.CreateAnalyzer()); 74public static IEnumerable<Analyzer> DefaultAnalyzers => all.Where(l => l.DefaultSet).OrderBy(l => l.Name).Select(l => l.CreateAnalyzer()); 76public static Analyzer GetLensByName(string name) => all.FirstOrDefault(l => l.Name == name)?.CreateAnalyzer();