473,395 Members | 1,526 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

bind2nd question

Shouldn't this compile?
#include <vector>
#include <algorithm>
#include <functional>
int main()
{
using namespace std;

vector<int> vec(1000, 10);
vector<int>::iterator p= find( vec.begin(), vec.end(),
bind2nd(less<int>(), 11) );
}


--
Ioannis Vranos

http://www23.brinkster.com/noicys
Jul 23 '05 #1
4 2614
Ioannis Vranos wrote:
Shouldn't this compile?
#include <vector>
#include <algorithm>
#include <functional>
int main()
{
using namespace std;

vector<int> vec(1000, 10);
vector<int>::iterator p= find( vec.begin(), vec.end(),
bind2nd(less<int>(), 11) );
}

You want to use std::find_if() instead of std::find(). The third paramater to std::find() is
expected to be the value you're looking for, where as std::find_if()'s third paramater is a binary
predicate.
Jul 23 '05 #2
Kurt Stutsman wrote:
Ioannis Vranos wrote:
Shouldn't this compile?
#include <vector>
#include <algorithm>
#include <functional>
int main()
{
using namespace std;

vector<int> vec(1000, 10);
vector<int>::iterator p= find( vec.begin(), vec.end(),
bind2nd(less<int>(), 11) );
}

You want to use std::find_if() instead of std::find(). The third
paramater to std::find() is expected to be the value you're looking for,
where as std::find_if()'s third paramater is a binary predicate.

Make that a Unary Predicate not a Binary Predicate. Sorry.
Jul 23 '05 #3
You are using a predicate, you need to use find_if rather than find.

--
Imanpreet Singh Arora

Jul 23 '05 #4
Ioannis Vranos wrote:
Shouldn't this compile?
No.
vector<int>::iterator p= find( vec.begin(), vec.end(),
bind2nd(less<int>(), 11) );


std::find looks for a particular value. To use a predicate, you want to
call std::find_if.

--
Later,
Jerry.

The universe is a figment of its own imagination.

Jul 23 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: red floyd | last post by:
Both gcc 3.3.1 and MSVC 7.1 complain about the second for_each() call in the following code. Why can't I use bind2nd for a functor with a non-const reference as the second parameter? I have to...
3
by: John Black | last post by:
Hi, I have some code like this, itr = find_if(this->pool.begin(), this->pool.end(), bind2nd(mem_fun_ref(&Pool::isAvailable), make_pair(base, high))); But compiler always complains a lot STL...
3
by: ES Kim | last post by:
Here's a simple code: #include <vector> #include <algorithm> #include <functional> using namespace std; struct S { void f(int) const { }
2
by: flyaflya | last post by:
i use a class static member function to for_each: class t1 { static test(string s); } main() { list<string> slist; ...
4
by: dzikus | last post by:
Why the following code does not compile? If I change the function argument to value (not reference) everything is ok. Is it possible to modify such code that it will compile with reference argument...
1
by: PS | last post by:
Hi, I wrote the following code to try using bind2nd. It compiles and works fine with g++ but a Sun compiler tells me : "test_bind2nd.cpp", line 21: Error: Cannot cast from...
8
by: Noah Roberts | last post by:
#include <vector> #include <algorithm> #include <functional> class X { int x; public: X(int i) : x(i) {} bool eq(const X & other) const { return x == other.x; }
2
by: benben | last post by:
I wrote the following lines: #include <locale> #include <functional> #include <algorithm> int main() { using namespace std; bind2nd(ptr_fun(tolower<char>), locale());
3
by: Bruintje Beer | last post by:
Hi, I am having the following question (see code below) the class Data is declared as class Data { public : // rest of class };
4
by: responsible | last post by:
Hi, Digging through the STL source code, i found this gem.. template <class _Operation, class _Tp> inline binder2nd<_Operation> bind2nd(const _Operation& __fn, const _Tp& __x) { typedef...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.