Binding Rules

Let’s learn what binding rules are for const rvalue references.

We'll cover the following...

What are binding rules?

The canonical signatures of the move assignment operator and the move constructor use non-const rvalue references.

But that doesn’t mean that const T&& doesn’t exist. It does, and it’s syntactically valid.

The ...