Guaranteed Copy Elision
This part introduces the concept of Copy Elision and its role in optimization.
We'll cover the following...
We'll cover the following...
Copy Elision is a common optimisation that avoids creating unnecessary temporary objects.
Copy Elision Example
For example:
In the above call, you might assume a temporary copy is used - to store the ...