MoreInternals.Context.GetWarnings C# (CSharp) Method

GetWarnings() public method

public GetWarnings ( ) : Error>.ILookup
return Error>.ILookup
        public ILookup<ErrorType, Error> GetWarnings()
        {
            var all = Warnings.SelectMany(i => i.Value);

            return all.ToLookup(i => i.Type);
        }