Lines Matching defs:IsJust
35 V8_INLINE bool IsJust() const { return has_value_; }
47 if (V8_UNLIKELY(!IsJust())) api_internal::FromJustIsNothing();
55 if (V8_LIKELY(IsJust())) *out = value_;
56 return IsJust();
64 if (V8_UNLIKELY(!IsJust())) api_internal::FromJustIsNothing();
73 if (V8_UNLIKELY(!IsJust())) api_internal::FromJustIsNothing();
86 return (IsJust() == other.IsJust()) &&
87 (!IsJust() || FromJust() == other.FromJust());
133 V8_INLINE bool IsJust() const { return is_valid_; }
136 return IsJust() == other.IsJust();