| 564 | |
| 565 | template <typename U> |
| 566 | SpanWithStride<U> castTo() |
| 567 | { |
| 568 | return {static_cast<U*>(reinterpret_cast<Type*>(data)), sizeElements, strideInBytes}; |
| 569 | } |
| 570 | |
| 571 | [[nodiscard]] Type& operator[](size_t idx) |
| 572 | { |
nothing calls this directly
no outgoing calls
no test coverage detected