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