I am using std::ptr_fun
as follows:
static inline std::string <rim(std::string &s) {
s.erase(s.begin(), std::find_if(s.begin(), s.end(
My answer is similar to the already given answers in this thread. But instead of
int isspace(int c);
function from the standard C
library, I am suggesting to use
bool isspace(char c, const locale& loc);
function instantiation from the standard C++
library (http://en.cppreference.com/w/cpp/locale/isspace), which is more type-correct. In this case you don't need to think about char -> unsigned char -> int
conversions and about the current user's locale.
The lambda which searches for non-space will looks like this then:
[](char c) { return !std::isspace(c, std::locale::classic()); }
And the full code of ltrim
function will look like this:
static inline std::string& ltrim(std::string& s) {
auto is_not_space = [](char c) { return !std::isspace(c, std::locale::classic()); };
auto first_non_space = std::find_if(s.begin(), s.end(), is_not_space);
s.erase(s.begin(), first_non_space);
return s;
}