James Hargreaves

Results 2 issues of James Hargreaves

Adds support for the following transformations: ``` OrderBy(...).FirstOrDefault() => MinBy(...) OrderByDescending(...).FirstOrDefault() => MaxBy(...) ``` Do not restrict Applying Demorgans laws to the cases when the inside of the All /...

Adds support for the following: ``` if(p){ return 1; } else if (q){ return 2; } ``` to ``` if(p){ return 1; } if(q){ return 2; } ```