Lines Matching defs:IsJust
32 V8_INLINE bool IsJust() const { return has_value_; }
44 if (V8_UNLIKELY(!IsJust())) api_internal::FromJustIsNothing();
52 if (V8_LIKELY(IsJust())) *out = value_;
53 return IsJust();
61 if (V8_UNLIKELY(!IsJust())) api_internal::FromJustIsNothing();
74 return (IsJust() == other.IsJust()) &&
75 (!IsJust() || FromJust() == other.FromJust());
110 V8_INLINE bool IsJust() const { return is_valid_; }
113 return IsJust() == other.IsJust();