| 67 | DALI_HOST_DEV constexpr size_t size() const noexcept { return N; } |
| 68 | DALI_HOST_DEV constexpr bool empty() const noexcept { return N == 0; } |
| 69 | DALI_HOST_DEV inline pointer data() noexcept { return data_; } |
| 70 | DALI_HOST_DEV constexpr const_pointer data() const noexcept { return data_; } |
| 71 | DALI_HOST_DEV inline reference front() noexcept { return *data_; } |
| 72 | DALI_HOST_DEV constexpr const_reference front() const noexcept { return *data_; } |
no outgoing calls
no test coverage detected