IT Nursery
I notice that I can do things like 2 << 5 to get 64 and 1000 >> 2 to get 250. Also I can use >> in print: print...
  • June 3, 2022
  • 0 Comments
IT Nursery
I’m reading STL source code and I have no idea what && address operator is supposed to do. Here is a code example from stl_vector.h: vector& operator=(vector&& __x) //...
  • May 31, 2022
  • 0 Comments