Ada 2.9.2
Fast spec-compliant URL parser
|
#include <ada.h>
Public Member Functions | |
constexpr | expected_storage_base () |
TL_EXPECTED_MSVC2015_CONSTEXPR | expected_storage_base (no_init_t) |
template<class... Args, detail::enable_if_t< std::is_constructible< T, Args &&... >::value > * = nullptr> | |
constexpr | expected_storage_base (in_place_t, Args &&...args) |
template<class U, class... Args, detail::enable_if_t< std::is_constructible< T, std::initializer_list< U > &, Args &&... >::value > * = nullptr> | |
constexpr | expected_storage_base (in_place_t, std::initializer_list< U > il, Args &&...args) |
template<class... Args, detail::enable_if_t< std::is_constructible< E, Args &&... >::value > * = nullptr> | |
constexpr | expected_storage_base (unexpect_t, Args &&...args) |
template<class U, class... Args, detail::enable_if_t< std::is_constructible< E, std::initializer_list< U > &, Args &&... >::value > * = nullptr> | |
constexpr | expected_storage_base (unexpect_t, std::initializer_list< U > il, Args &&...args) |
~expected_storage_base () |
Public Attributes | |
union tl::detail::expected_storage_base< T, E, true, false >:: { ... } | |
bool | m_has_val |
union { | |
T m_val | |
unexpected< E > m_unexpect | |
char m_no_init | |
}; |
|
inlineconstexpr |
|
inline |
Definition at line 2436 of file ada.h.
References m_has_val, m_no_init, and TL_EXPECTED_MSVC2015_CONSTEXPR.
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineexplicitconstexpr |
Definition at line 2454 of file ada.h.
References m_has_val, and m_unexpect.
|
inlineexplicitconstexpr |
Definition at line 2460 of file ada.h.
References m_has_val, and m_unexpect.
|
inline |
Definition at line 2465 of file ada.h.
References m_has_val, and m_unexpect.
union tl::detail::expected_storage_base< T, E, true, false > { ... } tl::detail::expected_storage_base< T, E, true, false > |
union { ... } tl::detail::expected_storage_base< T, E, bool, bool > |
bool tl::detail::expected_storage_base< T, E, true, false >::m_has_val |
Definition at line 2476 of file ada.h.
Referenced by expected_storage_base(), expected_storage_base(), expected_storage_base(), expected_storage_base(), expected_storage_base(), expected_storage_base(), and ~expected_storage_base().
char tl::detail::expected_storage_base< T, E, true, false >::m_no_init |
Definition at line 2474 of file ada.h.
Referenced by expected_storage_base().
unexpected<E> tl::detail::expected_storage_base< T, E, true, false >::m_unexpect |
Definition at line 2473 of file ada.h.
Referenced by expected_storage_base(), expected_storage_base(), and ~expected_storage_base().
T tl::detail::expected_storage_base< T, E, true, false >::m_val |
Definition at line 2472 of file ada.h.
Referenced by expected_storage_base(), expected_storage_base(), and expected_storage_base().