| 8 | { |
| 9 | T arr[N]; |
| 10 | constexpr void fill(const auto& val) noexcept |
| 11 | { |
| 12 | for(int i = 0; i < N; i++) |
| 13 | arr[i] = val; |
| 14 | } |
| 15 | constexpr T& operator[](std::size_t i) noexcept { return arr[i]; } |
| 16 | constexpr const T& operator[](std::size_t i) const noexcept { return arr[i]; } |
| 17 | }; |
no outgoing calls
no test coverage detected