Daily bit(e) of C++ | Trivially copyable types
Daily bit(e) of C++ #283, C++11 concept of trivially copyable class types.
Trivially copyable types are an important performance concept in C++.
A trivially copyable object can be treated as a block of bits and copied using primitive memory operations (e.g. memcpy and memmove).