| 234 | span() : ptr(nullptr), length(0) {} |
| 235 | |
| 236 | constexpr size_t len() const noexcept { |
| 237 | return length; |
| 238 | } |
| 239 | |
| 240 | const T& operator[](size_t index) const noexcept { |
| 241 | FASTFLOAT_DEBUG_ASSERT(index < length); |
no outgoing calls
no test coverage detected