======= CONSTRUCTORS =======
| 402 | |
| 403 | // ======= CONSTRUCTORS ======= |
| 404 | span() FL_NOEXCEPT : mData(nullptr) {} |
| 405 | span(T *data, fl::size size) FL_NOEXCEPT : mData(data) { |
| 406 | // In debug builds, could assert size == Extent |
| 407 | (void)size; // Suppress unused parameter warning |
no outgoing calls
no test coverage detected