I was reading about the << operator in c++ from C++ Primer.
In it, there are some lines written about << operator
cout << "Some string" evaluates to a left hand ostream operator that is the result of the expression is cout object itself.(We say that operator associates left to right) .
It would be great it someone explains what is the meaning of the above mentioned lines.