#include "cetl/pf17/optional.hpp"
Public Types | |
using | value_type = T |
Public Member Functions | |
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 |
Friends | |
template<typename, bool> | |
struct | detail::opt::base_destruction |
A strict implementation of C++17 std::optional.
|
constexprdefaultnoexcept |
Constructor 1.
|
constexprdefault |
Constructor 2.
|
constexprdefaultnoexcept |
Constructor 3.
References value().
|
inline |
Constructor 4.
|
inline |
Constructor 5.
|
inlineexplicitconstexprnoexcept |
Constructor 6.
References cetl::pf17::in_place, and value().
|
inlineexplicitconstexprnoexcept |
Constructor 7.
References cetl::pf17::in_place, and value().
|
inlineconstexprnoexcept |
Constructor 8.
References cetl::pf17::in_place, and value().
|
inlinenoexcept |
Construct the value in-place.
If the optional is already engaged, the value is destroyed and replaced with the new value.
References std::addressof(), std::forward(), reset(), and value().
Referenced by swap().
|
inlineconstexprnoexcept |
True if the optional is engaged.
References CETL_NODISCARD.
Referenced by operator bool(), cetl::pf17::operator!=(), cetl::pf17::operator!=(), cetl::pf17::operator<(), cetl::pf17::operator<(), cetl::pf17::operator<(), cetl::pf17::operator<=(), cetl::pf17::operator<=(), cetl::pf17::operator==(), cetl::pf17::operator==(), cetl::pf17::operator==(), cetl::pf17::operator>(), cetl::pf17::operator>(), cetl::pf17::operator>=(), cetl::pf17::operator>=(), swap(), and value_or().
|
inlineexplicitconstexprnoexcept |
Alias of has_value().
References has_value().
|
inlineconstexprnoexcept |
The dereference operator provides unchecked access to the value.
Behavior undefined if the optional is not engaged.
|
inlineconstexprnoexcept |
The arrow operator provides unchecked access to the value.
Behavior undefined if the optional is not engaged.
|
inlinenoexcept |
Assignment 1.
References reset().
|
default |
Assignment 2.
|
inline |
Assignment 5.
References std::addressof(), and reset().
|
constexprdefaultnoexcept |
Assignment 3.
References value().
|
inline |
Assignment 6.
References std::addressof(), and reset().
|
inline |
Assignment 4.
References std::addressof(), std::forward(), and value().
|
inline |
Destroy the value if engaged, otherwise do nothing.
Referenced by emplace(), operator=(), operator=(), operator=(), and swap().
|
inlinenoexcept |
Swaps two optionals. If either is not engaged, acts like move assignment.
References emplace(), has_value(), cetl::pf17::is_nothrow_swappable_v, reset(), swap(), and std::swap().
Referenced by swap().
|
inlineconstexpr |
Checked access to the value.
If the optional is not engaged, the behavior depends on whether exception handling is enabled:
References CETL_NODISCARD.
Referenced by emplace(), operator=(), operator=(), optional(), optional(), optional(), and optional().
|
inlineconstexpr |
Checked access to the value with a fallback value.
If the optional is engaged, a copy of its value is returned; otherwise, the default value is converted to T and the result is returned.
References CETL_NODISCARD, std::forward(), and has_value().