Tagged Questions
1
vote
2answers
88 views
Initialization lists and std::forward
Am I right in assuming that
class D { /* ... */ };
int f (const D & t) { return /* something calculated from t */; }
template<class T>
class C {
private:
int m_i;
T m_t;
// or ...
3
votes
1answer
103 views
rvalue reference and literal
Consider the code
template <typename... Args>
void foo (Args&& ...)
{
}
template <typename... Args>
void bar (Args&& ... args)
{
foo (std::forward (args)...);
}
int ...
3
votes
1answer
174 views
c++ vector implementation - move constructor - move vs forward
Under MSVC2010 the definition of move constructor for vector class is the following :
vector(_Myt&& _Right)
: _Mybase(_Right._Alval)
{ // construct by moving _Right
...
2
votes
3answers
87 views
Moving cursor with t and f, using word as parameter, vim
Is it possible in vim to move forward with t and f (or in the other way with T and F), but using words as a parameter ?
0
votes
2answers
243 views
Binding modifiable rvalue reference to modifiable lvalue
I have 3 questions:
1>Can I bind a lvalue directly to a rvalue reference ? Also
2>What happens to the object that being std::move() ?
3>What's the difference between std::move and std::forward ?
...