February 27, 2022
C++ move semantics
In this post, I’ll bring some information about the move semantics in C++. Move semantics is a highly important feature because it solves some problems of temporary object management, object assignment and constructions redundancies. For example, every time you write a code that makes a sum of two lvalues and pass it as an argument of a constructor of some object, you are creating (constructing […]