Given this definition:
vector<some_struct_t> lots_of_stuff;
And the fact that vector::at returns a reference, this code makes sense to me:
some_struct_t & ref_element = lots_of_stuff.at(0);
But, this code also compiles and seems to work:
some_struct_t val_element = lots_of_stuff.at(0);
How can a non-reference work here? Is a copy constructor being invoked? Why does this work?