| 3512 | |
| 3513 | bool some() const { return nullableValue != nullptr; } |
| 3514 | bool none() const { return nullableValue == nullptr; } |
| 3515 | |
| 3516 | bool operator !() const { return nullableValue == nullptr; } |
| 3517 | explicit operator bool() const { |
nothing calls this directly
no outgoing calls
no test coverage detected