|
constexpr | optional () noexcept=default |
|
constexpr | optional (const nullopt_t) noexcept |
|
constexpr | optional (const optional &)=default |
|
constexpr | optional (optional &&) noexcept(std::is_nothrow_move_constructible< T >::value)=default |
|
template<typename U, std::enable_if_t< detail::opt::enable_ctor4< T, U, false >, int > = 0> |
| optional (const optional< U > &other) |
|
template<typename U, std::enable_if_t< detail::opt::enable_ctor4< T, U, true >, int > = 0> |
| optional (const optional< U > &other) |
|
template<typename U, std::enable_if_t< detail::opt::enable_ctor5< T, U, false >, int > = 0> |
| optional (optional< U > &&other) |
|
template<typename U, std::enable_if_t< detail::opt::enable_ctor5< T, U, true >, int > = 0> |
| optional (optional< U > &&other) |
|
template<typename... Args> |
constexpr | optional (const in_place_t, Args &&... args) noexcept(std::is_nothrow_constructible< T, Args... >::value) |
|
template<typename U, typename... Args> |
constexpr | optional (const in_place_t, std::initializer_list< U > il, Args &&... args) noexcept(std::is_nothrow_constructible< T, std::initializer_list< U >, Args... >::value) |
|
template<typename U = T, std::enable_if_t< detail::opt::enable_ctor8< T, U, false >, int > = 0> |
constexpr | optional (U &&value) noexcept(std::is_nothrow_constructible< T, U >::value) |
|
template<typename U = T, std::enable_if_t< detail::opt::enable_ctor8< T, U, true >, int > = 0> |
constexpr | optional (U &&value) noexcept(std::is_nothrow_constructible< T, U >::value) |
|
optional & | operator= (const nullopt_t) noexcept |
|
optional & | operator= (const optional &other)=default |
|
constexpr optional & | operator= (optional &&other) noexcept(std::is_nothrow_move_assignable< T >::value &&std::is_nothrow_move_constructible< T >::value)=default |
|
template<typename U = T, std::enable_if_t<!std::is_same< std::decay_t< U >, optional >::value, int > = 0, std::enable_if_t< std::is_constructible< T, U >::value, int > = 0, std::enable_if_t< std::is_assignable< T &, U >::value, int > = 0, std::enable_if_t<(!std::is_scalar< T >::value)||(!std::is_same< std::decay_t< U >, T >::value), int > = 0> |
optional & | operator= (U &&value) |
|
template<typename U, std::enable_if_t<!detail::opt::convertible< T, optional< U > >, int > = 0, std::enable_if_t<!detail::opt::assignable< T &, optional< U > >, int > = 0, std::enable_if_t< std::is_constructible< T, const U & >::value, int > = 0, std::enable_if_t< std::is_assignable< T &, const U & >::value, int > = 0> |
optional & | operator= (const optional< U > &other) |
|
template<typename U, std::enable_if_t<!detail::opt::convertible< T, optional< U > >, int > = 0, std::enable_if_t<!detail::opt::assignable< T &, optional< U > >, int > = 0, std::enable_if_t< std::is_constructible< T, U >::value, int > = 0, std::enable_if_t< std::is_assignable< T &, U >::value, int > = 0> |
optional & | operator= (optional< U > &&other) |
|
void | reset () |
|
CETL_NODISCARD constexpr bool | has_value () const noexcept |
|
template<typename... Args> |
T & | emplace (Args &&... args) noexcept(std::is_nothrow_constructible< T, Args... >::value) |
|
template<typename U, typename... Args> |
T & | emplace (std::initializer_list< U > il, Args &&... args) noexcept(std::is_nothrow_constructible< T, std::initializer_list< U >, Args... >::value) |
|
void | swap (optional &other) noexcept(std::is_nothrow_move_constructible< T >::value &&is_nothrow_swappable_v< T >) |
|
CETL_NODISCARD constexpr T & | value () & |
|
CETL_NODISCARD constexpr const T & | value () const & |
|
CETL_NODISCARD constexpr T && | value () && |
|
CETL_NODISCARD constexpr const T && | value () const && |
|
template<class U> |
CETL_NODISCARD constexpr T | value_or (U &&default_value) const & |
|
template<class U> |
CETL_NODISCARD constexpr T | value_or (U &&default_value) && |
|
constexpr | operator bool () const noexcept |
|
constexpr T * | operator-> () noexcept |
|
constexpr const T * | operator-> () const noexcept |
|
constexpr T & | operator* () &noexcept |
|
constexpr const T & | operator* () const &noexcept |
|
constexpr T && | operator* () &&noexcept |
|
constexpr const T && | operator* () const &&noexcept |
|
template<typename T>
class cetl::optional< T >
A strict implementation of C++17 std::optional.