Searched defs:has_value (Results 1 – 6 of 6) sorted by relevance
25 constexpr bool has_value(int) { return true; } in has_value() function26 template <class> constexpr bool has_value(long) { return false; } in has_value() function27 template <class T> constexpr bool has_value() { return has_value<T>(0); } in has_value() function
20 bool has_value; member
49 bool has_value() const { return impl.has_value(); } in has_value() function
40 LIBC_INLINE constexpr bool has_value() const { return is_expected; } has_value() function
83 constexpr bool has_value() const { return Storage.has_value(); } in has_value() function
105 bool has_value() const { return !!Storage; } in has_value() function