// categories

Performance

performance 15 Apr 2024 6 min read

Move semantics and zero-copy data transfer

How move semantics eliminate copies in C++11 and beyond. Rvalue references, move constructors, std::move, and the patterns that make hot paths allocation-free.

#move-semantics#performance#c++11#rvalue#zero-copy