述語を組み合わせる方法はありますか?
私がこのようなものを持っているとしましょう:
class MatchBeginning : public binary_function<CStdString, CStdString, bool>
{ public:
bool operator()(const CStdString &inputOne, const CStdString &inputTwo) const
{ return inputOne.substr(0, inputTwo.length()).compare(inputTwo) == 0; }
};
int main(int argc, char* argv[])
{
CStdString myString("foo -b ar -t az");
vector<CStdString> tokens;
// splits the string every time it encounters a "-"
split(myString, tokens, "-", true, true);
vector<CStdString>::iterator searchResult = find_if(tokens.begin(), tokens.end(), not1(bind2nd(MatchBeginning(), "-")));
return 0;
}
これは機能しますが、今は次のようなことをしたいと思います。
searchResult = find_if(tokens.begin(), tokens.end(), bind2nd(MatchBeginning(), "-b") || not1(bind2nd(MatchBeginning(), "-")));
そこで、「-b」で始まる最初の文字列または「-」で始まらない最初の文字列を見つけたいと思います。ただし、これによりエラーが発生します(バイナリ'||'が未定義)。
これを行う方法はありますか?