I am new to C++, what\'s the exact meaning for the << in statement below, Thanks.
<<
if (Val & (0x0001 << 0)) {} else {}
That is a bit shift operator.
But when integers aren't involved, beware of an underlying overloaded operator.