So, I realize that const T& and T const& are identical and both mean a reference to a const T. In both cases, the reference is also constan
const T&
T const&
Being as code is predominantly English-based, programmers tend to read left to right, so const T& reads naturally to us where the compiler reads it inside out right to left so T const& reads naturally(reference to a const T)