| 295 | constexpr span() : ptr(nullptr), length(0) {} |
| 296 | |
| 297 | constexpr size_t len() const noexcept { |
| 298 | return length; |
| 299 | } |
| 300 | |
| 301 | FASTFLOAT_CONSTEXPR14 const T& operator[](size_t index) const noexcept { |
| 302 | FASTFLOAT_DEBUG_ASSERT(index < length); |
no outgoing calls
no test coverage detected