What is use of the ref-qualifier `const &&`?
On the usefulness of const&&… (in general) The usefulness of the const&& qualifier on the member method is minimal at best. The object cannot be modified in the same manner as a && method would allow it to be modified; it is const after all (as noted, mutable does change this). So we will not … Read more