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