| 106 | |
| 107 | template<std::floating_point T> |
| 108 | EncodeException<T> InMemoryExceptionChunk<T>::getExceptionAt(size_t exceptionIdx) const { |
| 109 | DASSERT(exceptionIdx < exceptionCount); |
| 110 | auto bytesInBuffer = chunkData->getValue<ExceptionInBuffer<T>>(exceptionIdx); |
| 111 | return EncodeExceptionView<T>{reinterpret_cast<std::byte*>(&bytesInBuffer)}.getValue(); |
| 112 | } |
| 113 | |
| 114 | template<std::floating_point T> |
| 115 | void InMemoryExceptionChunk<T>::writeException(EncodeException<T> exception, size_t exceptionIdx) { |
no test coverage detected