18 using System.Collections.Generic;
34 : base(allSymbols, localTime)
72 var monthHashSet = months.ToHashSet();
73 return this.Where(x => monthHashSet.Contains(x.ID.Date.Month));
90 universe.Data = universe.Data.Where(predicate).ToList();
102 universe.Data = universe.Data.Select(mapFunc).ToList();
114 universe.Data = universe.Data.SelectMany(mapFunc).ToList();