Searched defs:IsJust (Results 1 - 1 of 1) sorted by relevance

/external/v8/include/
H A Dv8.h7821 V8_INLINE bool IsJust() const { return has_value_; } function in class:v8::Maybe
7827 if (V8_LIKELY(IsJust())) *out = value_;
7828 return IsJust();
7833 if (V8_UNLIKELY(!IsJust())) V8::FromJustIsNothing();
7842 return (IsJust() == other.IsJust()) &&
7843 (!IsJust() || FromJust() == other.FromJust());

Completed in 185 milliseconds