@brief Builds an empty SpanWithStride
| 545 | { |
| 546 | /// @brief Builds an empty SpanWithStride |
| 547 | constexpr SpanWithStride() : data(nullptr), sizeElements(0), strideInBytes(0) {} |
| 548 | |
| 549 | /// @brief Builds a SpanWithStride from data, size, and stride |
| 550 | /// @param data pointer to the first element |