| 367 | } |
| 368 | |
| 369 | [[nodiscard]] constexpr reference operator[](E pos) { |
| 370 | auto i = index_type::at(pos); |
| 371 | return MAGIC_ENUM_ASSERT(i), a[*i]; |
| 372 | } |
| 373 | |
| 374 | [[nodiscard]] constexpr const_reference operator[](E pos) const { |
| 375 | auto i = index_type::at(pos); |
nothing calls this directly
no outgoing calls
no test coverage detected