"xvalue" is a C++11 term for an expiring value that can be moved from 

learn more… | top users | synonyms

5
votes
3answers
226 views

What expressions create xvalues?

I'm trying to understand the C++11 concepts. The standard draft which I have says: An xvalue (an “eXpiring” value) also refers to an object, usually near the end of its lifetime (so that its ...
2
votes
1answer
908 views

Delphi 6 - Create Excel chart from delphi application - data and chart on the same page

I need to create an excel chart in an excel page from a delphi program. I am getting 'Member not found' error on reaching the line. ch1.Chart.SeriesCollection.Item[0].Values := Sheets.Item['Delphi ...
2
votes
1answer
213 views

Are temporary objects xvalues?

I am currently writing my degree dissertation and it involves also some explaining of the theory behind C++11 which is really fine as C++ is my programming language of choice and the standard is more ...
4
votes
2answers
370 views

Addresses and lifetime of rvalue references (or of xvalues in general)

If I write the following code: #include <iostream> using namespace std; int main() { cout << &(int &&)123 << endl; return 0; } Then g++ complains: foo.cc: In ...
1
vote
1answer
562 views

xcode CGPoint arc4random not working

I have 22 images... 11 are (rightwall1, rightwall2, rightwall3, etc) the other 11 are (leftwall1, leftwall2, leftwall3, etc) I am placing each one ontop of the other by setting their y value to the ...
11
votes
5answers
532 views

What is decltype(0 + 0)?

(Prompted by an answer.) Given N3290, §7.1.6.2p4, where the list items are unnumbered, but numbered here for our convenience: The type denoted by decltype(e) is defined as follows: if e ...