| 4600 | bool none() const { return nullableValue == nullptr; } |
| 4601 | |
| 4602 | bool operator !() const { return nullableValue == nullptr; } |
| 4603 | explicit operator bool() const { |
| 4604 | return some(); |
| 4605 | } |
nothing calls this directly
no outgoing calls
no test coverage detected