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

  • SEARCH
  • Home
  • 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 9159005
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T13:23:16+00:00 2026-06-17T13:23:16+00:00

While experimenting with C++11 new features, I discovered that the std::placeholders::_1 can’t be directly

  • 0

While experimenting with C++11 new features, I discovered that the std::placeholders::_1 can’t be directly used as lambdas:

#include <algorithm>
#include <functional>
// #include <boost/lambda/lambda.hpp>

using namespace std;
// using boost::lambda::_1;
using std::placeholders::_1;

int main()
{
  int a[] = {1,2,3,4,5};

  transform(a, a+5, a, _1 * 2);
}

Clang 3.3 error:

tmp $ clang -std=c++11 -stdlib=libc++ -lc++ test.cpp
test.cpp:16:27: error: invalid operands to binary expression ('__ph<1>' and 'int')
  transform(a, a+5, a, _1 * 2);

If I change it to use Boost’s version it compiles fine.

Why this doesn’t work with the standard version? Is there a way to make it work or must I use an ugly lambda here?

transform(a, a+5, a, [](int i){return i*2;});
  • 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-17T13:23:17+00:00Added an answer on June 17, 2026 at 1:23 pm

    Boost actually has a number of _1 placeholders. Those from Boost.Bind (which were more or less incorporated into C++11), those from Boost.Lambda, and even those from Lambda’s successor Boost.Phoenix.

    The Lambda and Phoenix versions are the only placeholders that can be used to create functors by themselves. The Boost.Bind _1 placeholders cannot, and that’s what were standardized. Lambda and Phoenix are ways to turn an expression into a function; Bind is simply a function binding and argument adjustment system.

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

Sidebar

Related Questions

I'm experimenting with a lexer, and I found that switching from a while-loop to
while looking at some code I stumbled onto: throw /*-->*/new std::exception (//... and I
I just started experimenting cuda with the following cude #include macro.hpp #include <algorithm> #include
While experimenting with pixel shaders in WPF I decided to draw some pixels onto
I am currently working through Michael Hartl's Rails Tutorial while experimenting with some other
I am new to C++ and I am experimenting with the dirent.h header to
I'm experimenting a bit with the new canvas element in HTML. I simply want
I think over the last year and a half, while experimenting with Cocoa and
I've been searching and experimenting for a while with this, but I have had
I'm experimenting with some multithreading constructions, but somehow it seems that multithreading is not

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.