| 317 | std::size_t E = Extent, |
| 318 | typename std::enable_if<(E == dynamic_extent || E <= 0), int>::type = 0> |
| 319 | constexpr span() noexcept |
| 320 | {} |
| 321 | |
| 322 | TCB_SPAN_CONSTEXPR11 span(pointer ptr, size_type count) |
| 323 | : storage_(ptr, count) |
no test coverage detected