| 253 | } |
| 254 | |
| 255 | inline T FromJust() const { |
| 256 | #if defined(V8_ENABLE_CHECKS) |
| 257 | assert(IsJust() && "FromJust is Nothing"); |
| 258 | #endif // V8_ENABLE_CHECKS |
| 259 | return value_; |
| 260 | } |
| 261 | |
| 262 | inline T FromMaybe(const T& default_value) const { |
| 263 | return has_value_ ? value_ : default_value; |
no outgoing calls
no test coverage detected