QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
Loading...
Searching...
No Matches
std::experimental::optional< T > Class Template Reference

#include "optional.hpp"

Inheritance diagram for std::experimental::optional< T >:

Public Types

typedefvalue_type
 

Public Member Functions

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
 
optionaloperator= (nullopt_t) noexcept
 
optionaloperator= (const optional &rhs)
 
optionaloperator= (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 constoperator-> () const
 
T * operator-> ()
 
constexpr T constoperator* () const
 
T & operator* ()
 
constexpr T constvalue () const
 
T & value ()
 
template<class V >
constexprvalue_or (V &&v) const
 
void reset () noexcept
 

Member Typedef Documentation

◆ value_type

template<class T >
typedef T std::experimental::optional< T >::value_type

Constructor & Destructor Documentation

◆ optional() [1/8]

template<class T >
constexpr std::experimental::optional< T >::optional ( )
inlineconstexprnoexcept
413: OptionalBase<T>() {};
constexpr optional() noexcept
Definition optional.hpp:413

◆ optional() [2/8]

template<class T >
constexpr std::experimental::optional< T >::optional ( nullopt_t  )
inlineconstexprnoexcept
414: OptionalBase<T>() {};

◆ optional() [3/8]

template<class T >
std::experimental::optional< T >::optional ( const optional< T > &  rhs)
inline
418 {
419 if (rhs.initialized()) {
420 ::new (static_cast<void*>(dataptr())) T(*rhs);
421 OptionalBase<T>::init_ = true;
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]

template<class T >
std::experimental::optional< T >::optional ( optional< T > &&  rhs)
inlinenoexcept
427 {
428 if (rhs.initialized()) {
429 ::new (static_cast<void*>(dataptr())) T(std::move(*rhs));
430 OptionalBase<T>::init_ = true;
431 }
432 }
STL namespace.

◆ optional() [5/8]

template<class T >
constexpr std::experimental::optional< T >::optional ( const T &  v)
inlineconstexpr
434: OptionalBase<T>(v) {}

◆ optional() [6/8]

template<class T >
constexpr std::experimental::optional< T >::optional ( T &&  v)
inlineconstexpr
constexpr std::remove_reference< T >::type && constexpr_move(T &&t) noexcept
Definition optional.hpp:193

◆ optional() [7/8]

template<class T >
template<class... Args>
constexpr std::experimental::optional< T >::optional ( in_place_t  ,
Args &&...  args 
)
inlineexplicitconstexpr
440 : OptionalBase<T>(in_place_t{}, constexpr_forward<Args>(args)...) {}

◆ optional() [8/8]

template<class T >
template<class U , class... Args, TR2_OPTIONAL_REQUIRES(is_constructible< T, std::initializer_list< U > >) >
OPTIONAL_CONSTEXPR_INIT_LIST std::experimental::optional< T >::optional ( in_place_t  ,
std::initializer_list< U >  il,
Args &&...  args 
)
inlineexplicit
444 : OptionalBase<T>(in_place_t{}, il, constexpr_forward<Args>(args)...) {}

◆ ~optional()

template<class T >
std::experimental::optional< T >::~optional ( )
default

Member Function Documentation

◆ operator=() [1/4]

template<class T >
optional & std::experimental::optional< T >::operator= ( nullopt_t  )
inlinenoexcept
451 {
452 clear();
453 return *this;
454 }

◆ operator=() [2/4]

template<class T >
optional & std::experimental::optional< T >::operator= ( const optional< T > &  rhs)
inline
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]

template<class T >
optional & std::experimental::optional< T >::operator= ( optional< T > &&  rhs)
inlinenoexcept
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]

template<class T >
template<class U >
auto std::experimental::optional< T >::operator= ( U &&  v) -> typename enable_if < is_same<typename decay<U>::type, T>::value, optional& >::type
inline
480 {
481 if (initialized()) { contained_val() = std::forward<U>(v); }
482 else { initialize(std::forward<U>(v)); }
483 return *this;
484 }

◆ emplace() [1/2]

template<class T >
template<class... Args>
void std::experimental::optional< T >::emplace ( Args &&...  args)
inline
489 {
490 clear();
491 initialize(std::forward<Args>(args)...);
492 }

◆ emplace() [2/2]

template<class T >
template<class U , class... Args>
void std::experimental::optional< T >::emplace ( initializer_list< U >  il,
Args &&...  args 
)
inline
496 {
497 clear();
498 initialize<U, Args...>(il, std::forward<Args>(args)...);
499 }

◆ swap()

template<class T >
void std::experimental::optional< T >::swap ( optional< T > &  rhs)
inlinenoexcept
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()

template<class T >
constexpr std::experimental::optional< T >::operator bool ( ) const
inlineexplicitconstexprnoexcept
512{ return initialized(); }

◆ has_value()

template<class T >
constexpr bool std::experimental::optional< T >::has_value ( ) const
inlineconstexprnoexcept
513{ return initialized(); }

◆ operator->() [1/2]

template<class T >
constexpr T const * std::experimental::optional< T >::operator-> ( ) const
inlineconstexpr
515 {
516 return TR2_OPTIONAL_ASSERTED_EXPRESSION(initialized(), dataptr());
517 }
#define TR2_OPTIONAL_ASSERTED_EXPRESSION(CHECK, EXPR)
Definition optional.hpp:202

◆ operator->() [2/2]

template<class T >
T * std::experimental::optional< T >::operator-> ( )
inline
555 {
556 assert (initialized());
557 return dataptr();
558 }

◆ operator*() [1/2]

template<class T >
constexpr T const & std::experimental::optional< T >::operator* ( ) const
inlineconstexpr
560 {
561 return TR2_OPTIONAL_ASSERTED_EXPRESSION(initialized(), contained_val());
562 }

◆ operator*() [2/2]

template<class T >
T & std::experimental::optional< T >::operator* ( )
inline
564 {
565 assert (initialized());
566 return contained_val();
567 }

◆ value() [1/2]

template<class T >
constexpr T const & std::experimental::optional< T >::value ( ) const
inlineconstexpr
569 {
570 return initialized() ? contained_val() : (throw bad_optional_access("bad optional access"), contained_val());
571 }

◆ value() [2/2]

template<class T >
T & std::experimental::optional< T >::value ( )
inline
573 {
574 return initialized() ? contained_val() : (throw bad_optional_access("bad optional access"), contained_val());
575 }

◆ value_or()

template<class T >
template<class V >
constexpr T std::experimental::optional< T >::value_or ( V &&  v) const
inlineconstexpr
609 {
610 return *this ? **this : detail_::convert<T>(constexpr_forward<V>(v));
611 }

◆ reset()

template<class T >
void std::experimental::optional< T >::reset ( )
inlinenoexcept
616{ clear(); }

The documentation for this class was generated from the following file: