Tagged Questions
0
votes
0answers
65 views
Should function local variables always be returned with std::move? [duplicate]
Possible Duplicate:
Using std::move() when returning a value from a function to avoid to copy
Assume you have any sort of variable inside a function and you want to return it:
X ...
3
votes
4answers
247 views
returning a string from a function
I wanted to write a function that'll be cross platform (win32 & linux), and return a string representation of the datetime [hh:mm:ss dd-mm-yyyy].
Knowing that I just want to use the returned ...
11
votes
2answers
408 views
Returning std::vector by value
It is often said that in C++11 it is sane to return std::vector by value.
In C++03 this was mostly true as RVO should optimize away the copy. But that should scared most developers away.
In C++11 ...
7
votes
3answers
161 views
Is an object guaranteed to be moved when it is returned?
I know that when passing an object by value to a function, the move constructor is always called if there is one, assuming no copy elision. What about returning an object by value?
For example, say ...
0
votes
3answers
454 views
Move semantics & returning const values
I have the habit (?!?!?) of returning everything as a "const" value. Like this...
struct s;
s const make_s();
s const &s0 = make_s();
s const s1 = make_s();
With move operations and r-value ...
9
votes
2answers
333 views
Questions about postblit and move semantics
I have already asked a similar question a while ago, but I'm still unclear on some details.
Under what circumstances is the postblit constructor called?
What are the semantics of moving an object? ...