| 46 | value& operator=(value&&) noexcept; |
| 47 | |
| 48 | Kind kind() const { return kind_; } |
| 49 | |
| 50 | // Test if this object has any contents at all |
| 51 | explicit operator bool() const { return kind_ != Kind::Empty; } |
nothing calls this directly
no outgoing calls
no test coverage detected