Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8181627
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T00:35:05+00:00 2026-06-07T00:35:05+00:00

boost::bind overloads several operators for its placeholders: For convenience, the function objects produced by

  • 0

boost::bind overloads several operators for its placeholders:

For convenience, the function objects produced by bind overload the logical not operator ! and the relational and logical operators ==, !=, <, <=, >, >=, &&, ||.

For example, this allows me to pass _1 == desired_value as a predicate to STL algorithms.

Unfortunately, std::bind does not seem to overload these operators 🙁

  1. Why is that?

  2. What is a good workaround to simulate _1 == desired_value with std::bind?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T00:35:05+00:00Added an answer on June 7, 2026 at 12:35 am

    IIRC, Boost.Bind only overloads those operators for the placeholders because the original Boost Lambda Library, which Boost.Bind is an improvement of, did (Boost.Bind is obsolete thanks to Boost.Phoenix, btw). std::bind‘s placeholders are only intended for exactly that purpose, as placeholders for arguments to std::bind.

    As a workaround, use polymorphic functors:

    struct compare_equal{
      template<class LHS, class RHS>
      bool operator()(LHS&& lhs, RHS&& rhs){ // assume bool return
        return std::forward<LHS>(lhs) == std::forward<RHS>(rhs);
      }
    };
    
    // ...
    auto bound = std::bind(compare_equal(), _1, desired_value);
    

    Live example on Ideone.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some C++ code #include <cstdio> #include <boost/bind.hpp> #include <boost/function.hpp> class A {
Other than boost (Bind & Function), how can I dynamically call a function in
want to pass boost::bind to a method expecting a plain function pointer (same signature).
I am trying to use boost::bind with a boost::function using this. It seems a
I have just been working with boost::bind and boost::function and noticed the following behaviour
I just tested something like this: boost::thread workerThread1(boost::bind(&Class::Function, this, ...); boost::thread workerThread2(boost::bind(&Class::Function, this, ...);
I want to use boost::bind (I'm not sure if it is really the right
I want to use boost::bind to create a boost::function inserting a new key-value pair
In Boost::Spirit, how can I trigger an expectation_failure from a function bound with Boost::Bind
I have a situation where a boost::function and boost::bind (actually a std::tr1::function and bind)

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.