| 243 | public: |
| 244 | inline bool IsNothing() const { return !has_value_; } |
| 245 | inline bool IsJust() const { return has_value_; } |
| 246 | |
| 247 | inline T ToChecked() const { return FromJust(); } |
| 248 | inline void Check() const { FromJust(); } |
no outgoing calls
no test coverage detected