| 61 | using DataT = typename Sig::DataT; |
| 62 | |
| 63 | inline constexpr auto to_array() const noexcept |
| 64 | -> std::array<typename S::ScalarT, num_scalars_rounded> |
| 65 | { |
| 66 | alignas(S::Alignment) std::array<typename S::ScalarT, num_scalars_rounded> result = {}; |
| 67 | to_array(result); |
| 68 | return result; |
| 69 | } |
| 70 | |
| 71 | inline constexpr void |
| 72 | to_array(std::array<typename S::ScalarT, num_scalars_rounded> &buf) const noexcept |
no outgoing calls
no test coverage detected