#include bool is_empty(const std::string& val) { return val.empty(); } bool is_empty(const int& val) { return val == 0; }