| 23 | |
| 24 | template<typename T> |
| 25 | std::span<const std::byte> getBytesSpan(const T& item) |
| 26 | { |
| 27 | return std::span<const std::byte>{ reinterpret_cast<const std::byte*>(std::addressof(item)), sizeof(T) }; |
| 28 | } |
| 29 | |
| 30 | template<typename T> |
| 31 | auto bitWiseEqual(const T& lhs, const T& rhs) |
no outgoing calls
no test coverage detected