Tagged Questions
2
votes
2answers
197 views
Is it standard C++ to call move() with an output iterator that has been moved previously?
While brushing up on algorithm design and learning C++11 at the same time, I came up with the following implementation for heap sort:
template <typename It, typename Comp>
void heapSort(It ...
4
votes
2answers
117 views
std::list::splice, list&& VS list&
Some methods of std::list, and probably other STL containers, have a new overload added in C++11. The one I need is list::splice(). One method takes a list& parameter, the other one takes a ...
5
votes
3answers
187 views
On implementing std::swap in terms of move assignment and move constructor
Here is a possible definition of std::swap:
template<class T>
void swap(T& a, T& b) {
T tmp(std::move(a));
a = std::move(b);
b = std::move(tmp);
}
I believe that
...
12
votes
2answers
180 views
What does the standard library guarantee about self move assignment? [duplicate]
Possible Duplicate:
Move assignment operator and `if (this != &rhs)`
What does the C++11 standard say about self move assignment in relation to the standard library? To be more ...
1
vote
2answers
229 views
Move std::vector<T> to T*
all
I've a legacy code which in draft does something like this:
// sadly I have to use this structure
struct LegacyStruct {
int* values;
}
LegacyStruct* LgStr;
....
std::vector<int> vec;
...
4
votes
2answers
170 views
Does moving an element from an STL container remove it from that container?
I have a Foobar class with a sayHello() method that outputs "Well hello there!". If I write the following code
vector<unique_ptr<Foobar>> fooList;
fooList.emplace_back(new Foobar());
...
7
votes
3answers
2k views
Proper way (move semantics) to return a std::vector from function calling in C++11
I want to fill std::vector (or some other STL container):
class Foo {
public:
Foo(int _n, const Bar &_m);
private:
std::vector<Foo> fooes_;
}
1.Good looking ctor, expensive ...
111
votes
2answers
17k views
push_back vs emplace_back
I'm a bit confused regarding the difference between push_back and emplace_back.
void emplace_back(Type&& _Val);
void push_back(const Type& _Val);
void push_back(Type&& _Val);
As ...
