| 111 | T &operator*() { return storage; } |
| 112 | |
| 113 | bool valid() const { return storage.valid(); } |
| 114 | explicit operator bool() const { return valid(); } |
| 115 | operator std::optional<T>() const { |
| 116 | if (valid()) |
nothing calls this directly
no outgoing calls
no test coverage detected