| 107 | constexpr operator Value() const noexcept { return value; } |
| 108 | constexpr auto operator&() const noexcept { return Ref{name}; } |
| 109 | constexpr auto operator*() const noexcept { return value; } |
| 110 | constexpr auto operator[](auto... params) const noexcept { |
| 111 | return Var{bundle::Bundle{name, params...}}; |
| 112 | } |
nothing calls this directly
no outgoing calls
no test coverage detected