A
Andrew Wingorodov
im made subj like this:
inline
bool isnt_space (int sp) { return :isspace (sp)) ? false : true; }
str.erase (
std.begin ()
, std::find_if ( str.begin(), str.end(), isnt_space)
);
How i can use std for better away?
Can i invert result of the ::isspace by means of bind2nd?
inline
bool isnt_space (int sp) { return :isspace (sp)) ? false : true; }
str.erase (
std.begin ()
, std::find_if ( str.begin(), str.end(), isnt_space)
);
How i can use std for better away?
Can i invert result of the ::isspace by means of bind2nd?