|
template<class T, class U> |
constexpr bool | operator== (const optional< T > &lhs, const optional< U > &rhs) |
| Compares two optional objects.
|
|
template<class T, class U> |
constexpr bool | operator!= (const optional< T > &lhs, const optional< U > &rhs) |
|
template<class T, class U> |
constexpr bool | operator< (const optional< T > &lhs, const optional< U > &rhs) |
|
template<class T, class U> |
constexpr bool | operator> (const optional< T > &lhs, const optional< U > &rhs) |
|
template<class T, class U> |
constexpr bool | operator<= (const optional< T > &lhs, const optional< U > &rhs) |
|
template<class T, class U> |
constexpr bool | operator>= (const optional< T > &lhs, const optional< U > &rhs) |
|
template<class T> |
constexpr bool | operator== (const optional< T > &lhs, nullopt_t) noexcept |
| Compares an optional to a nullopt
|
|
template<class T> |
constexpr bool | operator== (nullopt_t, const optional< T > &rhs) noexcept |
|
template<class T> |
constexpr bool | operator!= (const optional< T > &lhs, nullopt_t) noexcept |
|
template<class T> |
constexpr bool | operator!= (nullopt_t, const optional< T > &rhs) noexcept |
|
template<class T> |
constexpr bool | operator< (const optional< T > &, nullopt_t) noexcept |
|
template<class T> |
constexpr bool | operator< (nullopt_t, const optional< T > &rhs) noexcept |
|
template<class T> |
constexpr bool | operator<= (const optional< T > &lhs, nullopt_t) noexcept |
|
template<class T> |
constexpr bool | operator<= (nullopt_t, const optional< T > &) noexcept |
|
template<class T> |
constexpr bool | operator> (const optional< T > &lhs, nullopt_t) noexcept |
|
template<class T> |
constexpr bool | operator> (nullopt_t, const optional< T > &) noexcept |
|
template<class T> |
constexpr bool | operator>= (const optional< T > &, nullopt_t) noexcept |
|
template<class T> |
constexpr bool | operator>= (nullopt_t, const optional< T > &rhs) noexcept |
|
template<class T, class U> |
constexpr bool | operator== (const optional< T > &lhs, const U &rhs) |
| Compares the optional with a value.
|
|
template<class T, class U> |
constexpr bool | operator== (const U &lhs, const optional< T > &rhs) |
|
template<class T, class U> |
constexpr bool | operator!= (const optional< T > &lhs, const U &rhs) |
|
template<class T, class U> |
constexpr bool | operator!= (const U &lhs, const optional< T > &rhs) |
|
template<class T, class U> |
constexpr bool | operator< (const optional< T > &lhs, const U &rhs) |
|
template<class T, class U> |
constexpr bool | operator< (const U &lhs, const optional< T > &rhs) |
|
template<class T, class U> |
constexpr bool | operator<= (const optional< T > &lhs, const U &rhs) |
|
template<class T, class U> |
constexpr bool | operator<= (const U &lhs, const optional< T > &rhs) |
|
template<class T, class U> |
constexpr bool | operator> (const optional< T > &lhs, const U &rhs) |
|
template<class T, class U> |
constexpr bool | operator> (const U &lhs, const optional< T > &rhs) |
|
template<class T, class U> |
constexpr bool | operator>= (const optional< T > &lhs, const U &rhs) |
|
template<class T, class U> |
constexpr bool | operator>= (const U &lhs, const optional< T > &rhs) |
|
template<class T, detail::enable_if_t< std::is_move_constructible< T >::value > * = nullptr, detail::enable_if_t< detail::is_swappable< T >::value > * = nullptr> |
void | swap (optional< T > &lhs, optional< T > &rhs) noexcept(noexcept(lhs.swap(rhs))) |
|
template<class T = detail::i_am_secret, class U, class Ret = detail::conditional_t<std::is_same<T, detail::i_am_secret>::value, detail::decay_t<U>, T>> |
constexpr optional< Ret > | make_optional (U &&v) |
|
template<class T, class... Args> |
constexpr optional< T > | make_optional (Args &&... args) |
|
template<class T, class U, class... Args> |
constexpr optional< T > | make_optional (std::initializer_list< U > il, Args &&... args) |
|