1 2 3 4 5 6 7 8 9 10 11
#include <utils/get_first_non_empty.hpp> bool is_empty(const std::string& val) { return val.empty(); } bool is_empty(const int& val) { return val == 0; }