std::assume_aligned (3) Linux Manual Page
std::assume_aligned – std::assume_aligned Synopsis Defined in header<memory> template <std::size_t N, class T> (since C++ 20) [[nodiscard]] constexpr T *assume_aligned(T *ptr); Informs the implementation that the object ptr points to is aligned to at least N.The implementation may use this information to generate more efficient code, but it might only make this assumption if the object…
