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 6936333
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T12:13:13+00:00 2026-05-27T12:13:13+00:00

Do I really have to encapsulate the std::move call in a lambda? std::list<std::wstring> srcData

  • 0

Do I really have to encapsulate the std::move call in a lambda?

std::list<std::wstring>     srcData = GetData(); // implementation not important
std::vector<std::wstring>   dstData;
dstData.reserve(srcData.size());
std::transform(std::begin(srcData), std::end(srcData), std::back_inserter(dstData), 
    [](std::wstring& guid) -> std::wstring { return std::move(guid); });
srcData.clear();

I am still new to lambdas and rvalue references, so initially I tried:

std::transform(std::begin(srcData), std::end(srcData), 
    std::back_inserter(dstData), &std::move<std::wstring>);

which doesn’t work.

Do I have to put the move inside a lambda, or am I missing something obvious?

  • 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-05-27T12:13:14+00:00Added an answer on May 27, 2026 at 12:13 pm

    An alternative is to use move iterators:

    std::vector<std::wstring> dstData(std::make_move_iterator(srcData.begin()),
                                      std::make_move_iterator(srcData.end()));
    

    Or use the move algorithm:

    std::move(srcData.begin(), srcData.end(), std::back_inserter(dstData));
    

    Since it was asked, here’s how you could force the original proposal to work:

    int main()
    {
        std::transform(std::begin(srcData),
          std::end(srcData),
          std::back_inserter(dstData),
          static_cast<std::wstring&&(*)(std::wstring&)>(&std::move<std::wstring&>));
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a few general use functions that do not really make sense in
I really have big problems with importing an extern C-Library to my existing C++-Project.
Do I really have to learn Objective-C to develop solid Mac Apps? As Mac
It doesn't really have to add newlines, just something readable. Anything better than this?
I am trying to understand if I really have any case for using git/mercurial.
I have a couple of projects hosted on Codeplex. Since I didn't really have
Currently, I don't really have a good method of debugging JavaScript in Internet Explorer and
Let's say we have two objects. Furthermore, let's assume that they really have no
Is is that I'm a newbie learning Ruby, or does it really have more
I'm used to doing Java programming, where you never really have to think about

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.