#include "optional.hpp"
|
constexpr | optional () noexcept |
|
constexpr | optional (nullopt_t) noexcept |
|
| optional (const optional &rhs) |
|
| optional (optional &&rhs) noexcept(is_nothrow_move_constructible< T >::value) |
|
constexpr | optional (const T &v) |
|
constexpr | optional (T &&v) |
|
template<class... Args> |
constexpr | optional (in_place_t, Args &&... args) |
|
template<class U , class... Args, TR2_OPTIONAL_REQUIRES(is_constructible< T, std::initializer_list< U > >) > |
OPTIONAL_CONSTEXPR_INIT_LIST | optional (in_place_t, std::initializer_list< U > il, Args &&... args) |
|
| ~optional ()=default |
|
optional & | operator= (nullopt_t) noexcept |
|
optional & | operator= (const optional &rhs) |
|
optional & | operator= (optional &&rhs) noexcept(is_nothrow_move_assignable< T >::value &&is_nothrow_move_constructible< T >::value) |
|
template<class U > |
auto | operator= (U &&v) -> typename enable_if< is_same< typename decay< U >::type, T >::value, optional & >::type |
|
template<class... Args> |
void | emplace (Args &&... args) |
|
template<class U , class... Args> |
void | emplace (initializer_list< U > il, Args &&... args) |
|
void | swap (optional< T > &rhs) noexcept(is_nothrow_move_constructible< T >::value &&noexcept(detail_::swap_ns::adl_swap(declval< T & >(), declval< T & >()))) |
|
constexpr | operator bool () const noexcept |
|
constexpr bool | has_value () const noexcept |
|
constexpr T const * | operator-> () const |
|
T * | operator-> () |
|
constexpr T const & | operator* () const |
|
T & | operator* () |
|
constexpr T const & | value () const |
|
T & | value () |
|
template<class V > |
constexpr T | value_or (V &&v) const |
|
void | reset () noexcept |
|
◆ value_type
◆ optional() [1/8]
constexpr optional() noexcept
Definition optional.hpp:413
◆ optional() [2/8]
◆ optional() [3/8]
418 {
419 if (
rhs.initialized()) {
420 ::new (
static_cast<void*
>(dataptr())) T(*
rhs);
422 }
423 }
typename std::conditional< is_trivially_destructible< T >::value, constexpr_optional_base< typename std::remove_const< T >::type >, optional_base< typename std::remove_const< T >::type > >::type OptionalBase
Definition optional.hpp:359
◆ optional() [4/8]
427 {
428 if (
rhs.initialized()) {
429 ::new (
static_cast<void*
>(dataptr())) T(
std::move(*
rhs));
431 }
432 }
◆ optional() [5/8]
◆ optional() [6/8]
constexpr std::remove_reference< T >::type && constexpr_move(T &&t) noexcept
Definition optional.hpp:193
◆ optional() [7/8]
◆ optional() [8/8]
◆ ~optional()
◆ operator=() [1/4]
451 {
452 clear();
453 return *this;
454 }
◆ operator=() [2/4]
457 {
458 if (initialized() ==
true &&
rhs.initialized() ==
false) clear();
459 else if (initialized() ==
false &&
rhs.initialized() ==
true) initialize(*
rhs);
460 else if (initialized() ==
true &&
rhs.initialized() ==
true) contained_val() = *
rhs;
461 return *this;
462 }
◆ operator=() [3/4]
466 {
467 if (initialized() ==
true &&
rhs.initialized() ==
false) clear();
468 else if (initialized() ==
false &&
rhs.initialized() ==
true) initialize(std::move(*
rhs));
469 else if (initialized() ==
true &&
rhs.initialized() ==
true) contained_val() = std::move(*
rhs);
470 return *this;
471 }
◆ operator=() [4/4]
480 {
481 if (initialized()) { contained_val() = std::forward<U>(v); }
482 else { initialize(std::forward<U>(v)); }
483 return *this;
484 }
◆ emplace() [1/2]
489 {
490 clear();
491 initialize(std::forward<Args>(
args)...);
492 }
◆ emplace() [2/2]
template<
class U , class... Args>
496 {
497 clear();
498 initialize<U,
Args...>(
il, std::forward<Args>(
args)...);
499 }
◆ swap()
504 {
505 if (initialized() ==
true &&
rhs.initialized() ==
false) {
rhs.initialize(std::move(**
this)); clear(); }
506 else if (initialized() ==
false &&
rhs.initialized() ==
true) { initialize(std::move(*
rhs));
rhs.clear(); }
507 else if (initialized() ==
true &&
rhs.initialized() ==
true) {
using std::swap;
swap(**
this, *
rhs); }
508 }
void swap(optional< T > &rhs) noexcept(is_nothrow_move_constructible< T >::value &&noexcept(detail_::swap_ns::adl_swap(declval< T & >(), declval< T & >())))
Definition optional.hpp:502
◆ operator bool()
|
inlineexplicitconstexprnoexcept |
512{ return initialized(); }
◆ has_value()
513{ return initialized(); }
◆ operator->() [1/2]
515 {
517 }
#define TR2_OPTIONAL_ASSERTED_EXPRESSION(CHECK, EXPR)
Definition optional.hpp:202
◆ operator->() [2/2]
555 {
557 return dataptr();
558 }
◆ operator*() [1/2]
◆ operator*() [2/2]
564 {
566 return contained_val();
567 }
◆ value() [1/2]
569 {
570 return initialized() ? contained_val() : (
throw bad_optional_access(
"bad optional access"), contained_val());
571 }
◆ value() [2/2]
573 {
574 return initialized() ? contained_val() : (
throw bad_optional_access(
"bad optional access"), contained_val());
575 }
◆ value_or()
◆ reset()
The documentation for this class was generated from the following file: