Need a check that will find nested calls of `std::min` or `std::max`. The check will suggest to use overloaded for `std::initializer_list` versions. BEFORE: ``` std::min(std::min(a, b), std::min(c, d)); ``` AFTER: ``` std::min({a, b, c, d}); ```