123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566 |
- // -*- C++ -*-
- //===----------------------------------------------------------------------===//
- //
- // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
- // See https://llvm.org/LICENSE.txt for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- //
- //===----------------------------------------------------------------------===//
- #ifndef _LIBCPP_OPTIONAL
- #define _LIBCPP_OPTIONAL
- /*
- optional synopsis
- // C++1z
- namespace std {
- // 23.6.3, optional for object types
- template <class T> class optional;
- // 23.6.4, no-value state indicator
- struct nullopt_t{see below };
- inline constexpr nullopt_t nullopt(unspecified );
- // 23.6.5, class bad_optional_access
- class bad_optional_access;
- // 23.6.6, relational operators
- template <class T, class U>
- constexpr bool operator==(const optional<T>&, const optional<U>&);
- template <class T, class U>
- constexpr bool operator!=(const optional<T>&, const optional<U>&);
- template <class T, class U>
- constexpr bool operator<(const optional<T>&, const optional<U>&);
- template <class T, class U>
- constexpr bool operator>(const optional<T>&, const optional<U>&);
- template <class T, class U>
- constexpr bool operator<=(const optional<T>&, const optional<U>&);
- template <class T, class U>
- constexpr bool operator>=(const optional<T>&, const optional<U>&);
- // 23.6.7 comparison with nullopt
- template <class T> constexpr bool operator==(const optional<T>&, 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>&) noexcept;
- template <class T> constexpr bool operator<(const optional<T>&, 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>&) noexcept;
- template <class T> constexpr bool operator>(const optional<T>&, 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>&) noexcept;
- // 23.6.8, comparison with T
- template <class T, class U> constexpr bool operator==(const optional<T>&, const U&);
- template <class T, class U> constexpr bool operator==(const T&, const optional<U>&);
- template <class T, class U> constexpr bool operator!=(const optional<T>&, const U&);
- template <class T, class U> constexpr bool operator!=(const T&, const optional<U>&);
- template <class T, class U> constexpr bool operator<(const optional<T>&, const U&);
- template <class T, class U> constexpr bool operator<(const T&, const optional<U>&);
- template <class T, class U> constexpr bool operator<=(const optional<T>&, const U&);
- template <class T, class U> constexpr bool operator<=(const T&, const optional<U>&);
- template <class T, class U> constexpr bool operator>(const optional<T>&, const U&);
- template <class T, class U> constexpr bool operator>(const T&, const optional<U>&);
- template <class T, class U> constexpr bool operator>=(const optional<T>&, const U&);
- template <class T, class U> constexpr bool operator>=(const T&, const optional<U>&);
- // 23.6.9, specialized algorithms
- template <class T> void swap(optional<T>&, optional<T>&) noexcept(see below ); // constexpr in C++20
- template <class T> constexpr optional<see below > make_optional(T&&);
- template <class T, class... Args>
- constexpr optional<T> make_optional(Args&&... args);
- template <class T, class U, class... Args>
- constexpr optional<T> make_optional(initializer_list<U> il, Args&&... args);
- // 23.6.10, hash support
- template <class T> struct hash;
- template <class T> struct hash<optional<T>>;
- template <class T> class optional {
- public:
- using value_type = T;
- // 23.6.3.1, constructors
- constexpr optional() noexcept;
- constexpr optional(nullopt_t) noexcept;
- optional(const optional &);
- optional(optional &&) noexcept(see below);
- template <class... Args> constexpr explicit optional(in_place_t, Args &&...);
- template <class U, class... Args>
- constexpr explicit optional(in_place_t, initializer_list<U>, Args &&...);
- template <class U = T>
- constexpr EXPLICIT optional(U &&);
- template <class U>
- EXPLICIT optional(const optional<U> &); // constexpr in C++20
- template <class U>
- EXPLICIT optional(optional<U> &&); // constexpr in C++20
- // 23.6.3.2, destructor
- ~optional(); // constexpr in C++20
- // 23.6.3.3, assignment
- optional &operator=(nullopt_t) noexcept; // constexpr in C++20
- optional &operator=(const optional &); // constexpr in C++20
- optional &operator=(optional &&) noexcept(see below); // constexpr in C++20
- template <class U = T> optional &operator=(U &&); // constexpr in C++20
- template <class U> optional &operator=(const optional<U> &); // constexpr in C++20
- template <class U> optional &operator=(optional<U> &&); // constexpr in C++20
- template <class... Args> T& emplace(Args &&...); // constexpr in C++20
- template <class U, class... Args>
- T& emplace(initializer_list<U>, Args &&...); // constexpr in C++20
- // 23.6.3.4, swap
- void swap(optional &) noexcept(see below ); // constexpr in C++20
- // 23.6.3.5, observers
- constexpr T const *operator->() const;
- constexpr T *operator->();
- constexpr T const &operator*() const &;
- constexpr T &operator*() &;
- constexpr T &&operator*() &&;
- constexpr const T &&operator*() const &&;
- constexpr explicit operator bool() const noexcept;
- constexpr bool has_value() const noexcept;
- constexpr T const &value() const &;
- constexpr T &value() &;
- constexpr T &&value() &&;
- constexpr const T &&value() const &&;
- template <class U> constexpr T value_or(U &&) const &;
- template <class U> constexpr T value_or(U &&) &&;
- // [optional.monadic], monadic operations
- template<class F> constexpr auto and_then(F&& f) &; // since C++23
- template<class F> constexpr auto and_then(F&& f) &&; // since C++23
- template<class F> constexpr auto and_then(F&& f) const&; // since C++23
- template<class F> constexpr auto and_then(F&& f) const&&; // since C++23
- template<class F> constexpr auto transform(F&& f) &; // since C++23
- template<class F> constexpr auto transform(F&& f) &&; // since C++23
- template<class F> constexpr auto transform(F&& f) const&; // since C++23
- template<class F> constexpr auto transform(F&& f) const&&; // since C++23
- template<class F> constexpr optional or_else(F&& f) &&; // since C++23
- template<class F> constexpr optional or_else(F&& f) const&; // since C++23
- // 23.6.3.6, modifiers
- void reset() noexcept; // constexpr in C++20
- private:
- T *val; // exposition only
- };
- template<class T>
- optional(T) -> optional<T>;
- } // namespace std
- */
- #include <__assert>
- #include <__availability>
- #include <__concepts/invocable.h>
- #include <__config>
- #include <compare>
- #include <functional>
- #include <initializer_list>
- #include <new>
- #include <stdexcept>
- #include <type_traits>
- #include <utility>
- #include <version>
- // TODO: remove these headers
- #include <__memory/allocator_arg_t.h>
- #include <__memory/uses_allocator.h>
- #include <typeinfo>
- #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
- # pragma GCC system_header
- #endif
- namespace std // purposefully not using versioning namespace
- {
- class _LIBCPP_EXCEPTION_ABI _LIBCPP_AVAILABILITY_BAD_OPTIONAL_ACCESS bad_optional_access
- : public exception
- {
- public:
- // Get the key function ~bad_optional_access() into the dylib
- virtual ~bad_optional_access() _NOEXCEPT;
- virtual const char* what() const _NOEXCEPT;
- };
- } // namespace std
- #if _LIBCPP_STD_VER > 14
- _LIBCPP_BEGIN_NAMESPACE_STD
- _LIBCPP_NORETURN
- inline _LIBCPP_INLINE_VISIBILITY
- _LIBCPP_AVAILABILITY_THROW_BAD_OPTIONAL_ACCESS
- void __throw_bad_optional_access() {
- #ifndef _LIBCPP_NO_EXCEPTIONS
- throw bad_optional_access();
- #else
- _VSTD::abort();
- #endif
- }
- struct nullopt_t
- {
- struct __secret_tag { _LIBCPP_INLINE_VISIBILITY explicit __secret_tag() = default; };
- _LIBCPP_INLINE_VISIBILITY constexpr explicit nullopt_t(__secret_tag, __secret_tag) noexcept {}
- };
- inline constexpr nullopt_t nullopt{nullopt_t::__secret_tag{}, nullopt_t::__secret_tag{}};
- struct __optional_construct_from_invoke_tag {};
- template <class _Tp, bool = is_trivially_destructible<_Tp>::value>
- struct __optional_destruct_base;
- template <class _Tp>
- struct __optional_destruct_base<_Tp, false>
- {
- typedef _Tp value_type;
- static_assert(is_object_v<value_type>,
- "instantiation of optional with a non-object type is undefined behavior");
- union
- {
- char __null_state_;
- value_type __val_;
- };
- bool __engaged_;
- _LIBCPP_INLINE_VISIBILITY
- /* _LIBCPP_CONSTEXPR_AFTER_CXX17 */ ~__optional_destruct_base()
- {
- if (__engaged_)
- __val_.~value_type();
- }
- _LIBCPP_INLINE_VISIBILITY
- constexpr __optional_destruct_base() noexcept
- : __null_state_(),
- __engaged_(false) {}
- template <class... _Args>
- _LIBCPP_INLINE_VISIBILITY
- constexpr explicit __optional_destruct_base(in_place_t, _Args&&... __args)
- : __val_(_VSTD::forward<_Args>(__args)...),
- __engaged_(true) {}
- #if _LIBCPP_STD_VER > 20
- template <class _Fp, class... _Args>
- _LIBCPP_HIDE_FROM_ABI
- constexpr __optional_destruct_base(__optional_construct_from_invoke_tag, _Fp&& __f, _Args&&... __args)
- : __val_(_VSTD::invoke(_VSTD::forward<_Fp>(__f), _VSTD::forward<_Args>(__args)...)), __engaged_(true) {}
- #endif
- _LIBCPP_INLINE_VISIBILITY
- _LIBCPP_CONSTEXPR_AFTER_CXX17 void reset() noexcept
- {
- if (__engaged_)
- {
- __val_.~value_type();
- __engaged_ = false;
- }
- }
- };
- template <class _Tp>
- struct __optional_destruct_base<_Tp, true>
- {
- typedef _Tp value_type;
- static_assert(is_object_v<value_type>,
- "instantiation of optional with a non-object type is undefined behavior");
- union
- {
- char __null_state_;
- value_type __val_;
- };
- bool __engaged_;
- _LIBCPP_INLINE_VISIBILITY
- constexpr __optional_destruct_base() noexcept
- : __null_state_(),
- __engaged_(false) {}
- template <class... _Args>
- _LIBCPP_INLINE_VISIBILITY
- constexpr explicit __optional_destruct_base(in_place_t, _Args&&... __args)
- : __val_(_VSTD::forward<_Args>(__args)...),
- __engaged_(true) {}
- #if _LIBCPP_STD_VER > 20
- template <class _Fp, class... _Args>
- _LIBCPP_HIDE_FROM_ABI
- constexpr __optional_destruct_base(__optional_construct_from_invoke_tag, _Fp&& __f, _Args&&... __args)
- : __val_(_VSTD::invoke(_VSTD::forward<_Fp>(__f), _VSTD::forward<_Args>(__args)...)), __engaged_(true) {}
- #endif
- _LIBCPP_INLINE_VISIBILITY
- _LIBCPP_CONSTEXPR_AFTER_CXX17 void reset() noexcept
- {
- if (__engaged_)
- {
- __engaged_ = false;
- }
- }
- };
- template <class _Tp, bool = is_reference<_Tp>::value>
- struct __optional_storage_base : __optional_destruct_base<_Tp>
- {
- using __base = __optional_destruct_base<_Tp>;
- using value_type = _Tp;
- using __base::__base;
- _LIBCPP_INLINE_VISIBILITY
- constexpr bool has_value() const noexcept
- {
- return this->__engaged_;
- }
- _LIBCPP_INLINE_VISIBILITY
- constexpr value_type& __get() & noexcept
- {
- return this->__val_;
- }
- _LIBCPP_INLINE_VISIBILITY
- constexpr const value_type& __get() const& noexcept
- {
- return this->__val_;
- }
- _LIBCPP_INLINE_VISIBILITY
- constexpr value_type&& __get() && noexcept
- {
- return _VSTD::move(this->__val_);
- }
- _LIBCPP_INLINE_VISIBILITY
- constexpr const value_type&& __get() const&& noexcept
- {
- return _VSTD::move(this->__val_);
- }
- template <class... _Args>
- _LIBCPP_INLINE_VISIBILITY
- _LIBCPP_CONSTEXPR_AFTER_CXX17 void __construct(_Args&&... __args)
- {
- _LIBCPP_ASSERT(!has_value(), "__construct called for engaged __optional_storage");
- #if _LIBCPP_STD_VER > 17
- _VSTD::construct_at(_VSTD::addressof(this->__val_), _VSTD::forward<_Args>(__args)...);
- #else
- ::new ((void*)_VSTD::addressof(this->__val_)) value_type(_VSTD::forward<_Args>(__args)...);
- #endif
- this->__engaged_ = true;
- }
- template <class _That>
- _LIBCPP_INLINE_VISIBILITY
- _LIBCPP_CONSTEXPR_AFTER_CXX17 void __construct_from(_That&& __opt)
- {
- if (__opt.has_value())
- __construct(_VSTD::forward<_That>(__opt).__get());
- }
- template <class _That>
- _LIBCPP_INLINE_VISIBILITY
- _LIBCPP_CONSTEXPR_AFTER_CXX17 void __assign_from(_That&& __opt)
- {
- if (this->__engaged_ == __opt.has_value())
- {
- if (this->__engaged_)
- this->__val_ = _VSTD::forward<_That>(__opt).__get();
- }
- else
- {
- if (this->__engaged_)
- this->reset();
- else
- __construct(_VSTD::forward<_That>(__opt).__get());
- }
- }
- };
- // optional<T&> is currently required ill-formed, however it may to be in the
- // future. For this reason it has already been implemented to ensure we can
- // make the change in an ABI compatible manner.
- template <class _Tp>
- struct __optional_storage_base<_Tp, true>
- {
- using value_type = _Tp;
- using __raw_type = remove_reference_t<_Tp>;
- __raw_type* __value_;
- template <class _Up>
- static constexpr bool __can_bind_reference() {
- using _RawUp = typename remove_reference<_Up>::type;
- using _UpPtr = _RawUp*;
- using _RawTp = typename remove_reference<_Tp>::type;
- using _TpPtr = _RawTp*;
- using _CheckLValueArg = integral_constant<bool,
- (is_lvalue_reference<_Up>::value && is_convertible<_UpPtr, _TpPtr>::value)
- || is_same<_RawUp, reference_wrapper<_RawTp>>::value
- || is_same<_RawUp, reference_wrapper<typename remove_const<_RawTp>::type>>::value
- >;
- return (is_lvalue_reference<_Tp>::value && _CheckLValueArg::value)
- || (is_rvalue_reference<_Tp>::value && !is_lvalue_reference<_Up>::value &&
- is_convertible<_UpPtr, _TpPtr>::value);
- }
- _LIBCPP_INLINE_VISIBILITY
- constexpr __optional_storage_base() noexcept
- : __value_(nullptr) {}
- template <class _UArg>
- _LIBCPP_INLINE_VISIBILITY
- constexpr explicit __optional_storage_base(in_place_t, _UArg&& __uarg)
- : __value_(_VSTD::addressof(__uarg))
- {
- static_assert(__can_bind_reference<_UArg>(),
- "Attempted to construct a reference element in tuple from a "
- "possible temporary");
- }
- _LIBCPP_INLINE_VISIBILITY
- _LIBCPP_CONSTEXPR_AFTER_CXX17 void reset() noexcept { __value_ = nullptr; }
- _LIBCPP_INLINE_VISIBILITY
- constexpr bool has_value() const noexcept
- { return __value_ != nullptr; }
- _LIBCPP_INLINE_VISIBILITY
- constexpr value_type& __get() const& noexcept
- { return *__value_; }
- _LIBCPP_INLINE_VISIBILITY
- constexpr value_type&& __get() const&& noexcept
- { return _VSTD::forward<value_type>(*__value_); }
- template <class _UArg>
- _LIBCPP_INLINE_VISIBILITY
- _LIBCPP_CONSTEXPR_AFTER_CXX17 void __construct(_UArg&& __val)
- {
- _LIBCPP_ASSERT(!has_value(), "__construct called for engaged __optional_storage");
- static_assert(__can_bind_reference<_UArg>(),
- "Attempted to construct a reference element in tuple from a "
- "possible temporary");
- __value_ = _VSTD::addressof(__val);
- }
- template <class _That>
- _LIBCPP_INLINE_VISIBILITY
- _LIBCPP_CONSTEXPR_AFTER_CXX17 void __construct_from(_That&& __opt)
- {
- if (__opt.has_value())
- __construct(_VSTD::forward<_That>(__opt).__get());
- }
- template <class _That>
- _LIBCPP_INLINE_VISIBILITY
- _LIBCPP_CONSTEXPR_AFTER_CXX17 void __assign_from(_That&& __opt)
- {
- if (has_value() == __opt.has_value())
- {
- if (has_value())
- *__value_ = _VSTD::forward<_That>(__opt).__get();
- }
- else
- {
- if (has_value())
- reset();
- else
- __construct(_VSTD::forward<_That>(__opt).__get());
- }
- }
- };
- template <class _Tp, bool = is_trivially_copy_constructible<_Tp>::value>
- struct __optional_copy_base : __optional_storage_base<_Tp>
- {
- using __optional_storage_base<_Tp>::__optional_storage_base;
- };
- template <class _Tp>
- struct __optional_copy_base<_Tp, false> : __optional_storage_base<_Tp>
- {
- using __optional_storage_base<_Tp>::__optional_storage_base;
- _LIBCPP_INLINE_VISIBILITY
- __optional_copy_base() = default;
- _LIBCPP_INLINE_VISIBILITY
- _LIBCPP_CONSTEXPR_AFTER_CXX17 __optional_copy_base(const __optional_copy_base& __opt)
- {
- this->__construct_from(__opt);
- }
- _LIBCPP_INLINE_VISIBILITY
- __optional_copy_base(__optional_copy_base&&) = default;
- _LIBCPP_INLINE_VISIBILITY
- __optional_copy_base& operator=(const __optional_copy_base&) = default;
- _LIBCPP_INLINE_VISIBILITY
- __optional_copy_base& operator=(__optional_copy_base&&) = default;
- };
- template <class _Tp, bool = is_trivially_move_constructible<_Tp>::value>
- struct __optional_move_base : __optional_copy_base<_Tp>
- {
- using __optional_copy_base<_Tp>::__optional_copy_base;
- };
- template <class _Tp>
- struct __optional_move_base<_Tp, false> : __optional_copy_base<_Tp>
- {
- using value_type = _Tp;
- using __optional_copy_base<_Tp>::__optional_copy_base;
- _LIBCPP_INLINE_VISIBILITY
- __optional_move_base() = default;
- _LIBCPP_INLINE_VISIBILITY
- __optional_move_base(const __optional_move_base&) = default;
- _LIBCPP_INLINE_VISIBILITY
- _LIBCPP_CONSTEXPR_AFTER_CXX17 __optional_move_base(__optional_move_base&& __opt)
- noexcept(is_nothrow_move_constructible_v<value_type>)
- {
- this->__construct_from(_VSTD::move(__opt));
- }
- _LIBCPP_INLINE_VISIBILITY
- __optional_move_base& operator=(const __optional_move_base&) = default;
- _LIBCPP_INLINE_VISIBILITY
- __optional_move_base& operator=(__optional_move_base&&) = default;
- };
- template <class _Tp, bool =
- is_trivially_destructible<_Tp>::value &&
- is_trivially_copy_constructible<_Tp>::value &&
- is_trivially_copy_assignable<_Tp>::value>
- struct __optional_copy_assign_base : __optional_move_base<_Tp>
- {
- using __optional_move_base<_Tp>::__optional_move_base;
- };
- template <class _Tp>
- struct __optional_copy_assign_base<_Tp, false> : __optional_move_base<_Tp>
- {
- using __optional_move_base<_Tp>::__optional_move_base;
- _LIBCPP_INLINE_VISIBILITY
- __optional_copy_assign_base() = default;
- _LIBCPP_INLINE_VISIBILITY
- __optional_copy_assign_base(const __optional_copy_assign_base&) = default;
- _LIBCPP_INLINE_VISIBILITY
- __optional_copy_assign_base(__optional_copy_assign_base&&) = default;
- _LIBCPP_INLINE_VISIBILITY
- _LIBCPP_CONSTEXPR_AFTER_CXX17 __optional_copy_assign_base& operator=(const __optional_copy_assign_base& __opt)
- {
- this->__assign_from(__opt);
- return *this;
- }
- _LIBCPP_INLINE_VISIBILITY
- __optional_copy_assign_base& operator=(__optional_copy_assign_base&&) = default;
- };
- template <class _Tp, bool =
- is_trivially_destructible<_Tp>::value &&
- is_trivially_move_constructible<_Tp>::value &&
- is_trivially_move_assignable<_Tp>::value>
- struct __optional_move_assign_base : __optional_copy_assign_base<_Tp>
- {
- using __optional_copy_assign_base<_Tp>::__optional_copy_assign_base;
- };
- template <class _Tp>
- struct __optional_move_assign_base<_Tp, false> : __optional_copy_assign_base<_Tp>
- {
- using value_type = _Tp;
- using __optional_copy_assign_base<_Tp>::__optional_copy_assign_base;
- _LIBCPP_INLINE_VISIBILITY
- __optional_move_assign_base() = default;
- _LIBCPP_INLINE_VISIBILITY
- __optional_move_assign_base(const __optional_move_assign_base& __opt) = default;
- _LIBCPP_INLINE_VISIBILITY
- __optional_move_assign_base(__optional_move_assign_base&&) = default;
- _LIBCPP_INLINE_VISIBILITY
- __optional_move_assign_base& operator=(const __optional_move_assign_base&) = default;
- _LIBCPP_INLINE_VISIBILITY
- _LIBCPP_CONSTEXPR_AFTER_CXX17 __optional_move_assign_base& operator=(__optional_move_assign_base&& __opt)
- noexcept(is_nothrow_move_assignable_v<value_type> &&
- is_nothrow_move_constructible_v<value_type>)
- {
- this->__assign_from(_VSTD::move(__opt));
- return *this;
- }
- };
- template <class _Tp>
- using __optional_sfinae_ctor_base_t = __sfinae_ctor_base<
- is_copy_constructible<_Tp>::value,
- is_move_constructible<_Tp>::value
- >;
- template <class _Tp>
- using __optional_sfinae_assign_base_t = __sfinae_assign_base<
- (is_copy_constructible<_Tp>::value && is_copy_assignable<_Tp>::value),
- (is_move_constructible<_Tp>::value && is_move_assignable<_Tp>::value)
- >;
- template<class _Tp>
- class optional;
- template <class _Tp>
- struct __is_std_optional : false_type {};
- template <class _Tp> struct __is_std_optional<optional<_Tp>> : true_type {};
- template <class _Tp>
- class optional
- : private __optional_move_assign_base<_Tp>
- , private __optional_sfinae_ctor_base_t<_Tp>
- , private __optional_sfinae_assign_base_t<_Tp>
- {
- using __base = __optional_move_assign_base<_Tp>;
- public:
- using value_type = _Tp;
- private:
- // Disable the reference extension using this static assert.
- static_assert(!is_same_v<__uncvref_t<value_type>, in_place_t>,
- "instantiation of optional with in_place_t is ill-formed");
- static_assert(!is_same_v<__uncvref_t<value_type>, nullopt_t>,
- "instantiation of optional with nullopt_t is ill-formed");
- static_assert(!is_reference_v<value_type>,
- "instantiation of optional with a reference type is ill-formed");
- static_assert(is_destructible_v<value_type>,
- "instantiation of optional with a non-destructible type is ill-formed");
- static_assert(!is_array_v<value_type>,
- "instantiation of optional with an array type is ill-formed");
- // LWG2756: conditionally explicit conversion from _Up
- struct _CheckOptionalArgsConstructor {
- template <class _Up>
- static constexpr bool __enable_implicit =
- is_constructible_v<_Tp, _Up&&> &&
- is_convertible_v<_Up&&, _Tp>;
- template <class _Up>
- static constexpr bool __enable_explicit =
- is_constructible_v<_Tp, _Up&&> &&
- !is_convertible_v<_Up&&, _Tp>;
- };
- template <class _Up>
- using _CheckOptionalArgsCtor = _If<
- _IsNotSame<__uncvref_t<_Up>, in_place_t>::value &&
- _IsNotSame<__uncvref_t<_Up>, optional>::value,
- _CheckOptionalArgsConstructor,
- __check_tuple_constructor_fail
- >;
- template <class _QualUp>
- struct _CheckOptionalLikeConstructor {
- template <class _Up, class _Opt = optional<_Up>>
- using __check_constructible_from_opt = _Or<
- is_constructible<_Tp, _Opt&>,
- is_constructible<_Tp, _Opt const&>,
- is_constructible<_Tp, _Opt&&>,
- is_constructible<_Tp, _Opt const&&>,
- is_convertible<_Opt&, _Tp>,
- is_convertible<_Opt const&, _Tp>,
- is_convertible<_Opt&&, _Tp>,
- is_convertible<_Opt const&&, _Tp>
- >;
- template <class _Up, class _Opt = optional<_Up>>
- using __check_assignable_from_opt = _Or<
- is_assignable<_Tp&, _Opt&>,
- is_assignable<_Tp&, _Opt const&>,
- is_assignable<_Tp&, _Opt&&>,
- is_assignable<_Tp&, _Opt const&&>
- >;
- template <class _Up, class _QUp = _QualUp>
- static constexpr bool __enable_implicit =
- is_convertible<_QUp, _Tp>::value &&
- !__check_constructible_from_opt<_Up>::value;
- template <class _Up, class _QUp = _QualUp>
- static constexpr bool __enable_explicit =
- !is_convertible<_QUp, _Tp>::value &&
- !__check_constructible_from_opt<_Up>::value;
- template <class _Up, class _QUp = _QualUp>
- static constexpr bool __enable_assign =
- !__check_constructible_from_opt<_Up>::value &&
- !__check_assignable_from_opt<_Up>::value;
- };
- template <class _Up, class _QualUp>
- using _CheckOptionalLikeCtor = _If<
- _And<
- _IsNotSame<_Up, _Tp>,
- is_constructible<_Tp, _QualUp>
- >::value,
- _CheckOptionalLikeConstructor<_QualUp>,
- __check_tuple_constructor_fail
- >;
- template <class _Up, class _QualUp>
- using _CheckOptionalLikeAssign = _If<
- _And<
- _IsNotSame<_Up, _Tp>,
- is_constructible<_Tp, _QualUp>,
- is_assignable<_Tp&, _QualUp>
- >::value,
- _CheckOptionalLikeConstructor<_QualUp>,
- __check_tuple_constructor_fail
- >;
- public:
- _LIBCPP_INLINE_VISIBILITY constexpr optional() noexcept {}
- _LIBCPP_INLINE_VISIBILITY constexpr optional(const optional&) = default;
- _LIBCPP_INLINE_VISIBILITY constexpr optional(optional&&) = default;
- _LIBCPP_INLINE_VISIBILITY constexpr optional(nullopt_t) noexcept {}
- template <class _InPlaceT, class... _Args, class = enable_if_t<
- _And<
- _IsSame<_InPlaceT, in_place_t>,
- is_constructible<value_type, _Args...>
- >::value
- >
- >
- _LIBCPP_INLINE_VISIBILITY
- constexpr explicit optional(_InPlaceT, _Args&&... __args)
- : __base(in_place, _VSTD::forward<_Args>(__args)...) {}
- template <class _Up, class... _Args, class = enable_if_t<
- is_constructible_v<value_type, initializer_list<_Up>&, _Args...>>
- >
- _LIBCPP_INLINE_VISIBILITY
- constexpr explicit optional(in_place_t, initializer_list<_Up> __il, _Args&&... __args)
- : __base(in_place, __il, _VSTD::forward<_Args>(__args)...) {}
- template <class _Up = value_type, enable_if_t<
- _CheckOptionalArgsCtor<_Up>::template __enable_implicit<_Up>
- , int> = 0>
- _LIBCPP_INLINE_VISIBILITY
- constexpr optional(_Up&& __v)
- : __base(in_place, _VSTD::forward<_Up>(__v)) {}
- template <class _Up, enable_if_t<
- _CheckOptionalArgsCtor<_Up>::template __enable_explicit<_Up>
- , int> = 0>
- _LIBCPP_INLINE_VISIBILITY
- constexpr explicit optional(_Up&& __v)
- : __base(in_place, _VSTD::forward<_Up>(__v)) {}
- // LWG2756: conditionally explicit conversion from const optional<_Up>&
- template <class _Up, enable_if_t<
- _CheckOptionalLikeCtor<_Up, _Up const&>::template __enable_implicit<_Up>
- , int> = 0>
- _LIBCPP_INLINE_VISIBILITY
- _LIBCPP_CONSTEXPR_AFTER_CXX17 optional(const optional<_Up>& __v)
- {
- this->__construct_from(__v);
- }
- template <class _Up, enable_if_t<
- _CheckOptionalLikeCtor<_Up, _Up const&>::template __enable_explicit<_Up>
- , int> = 0>
- _LIBCPP_INLINE_VISIBILITY
- _LIBCPP_CONSTEXPR_AFTER_CXX17 explicit optional(const optional<_Up>& __v)
- {
- this->__construct_from(__v);
- }
- // LWG2756: conditionally explicit conversion from optional<_Up>&&
- template <class _Up, enable_if_t<
- _CheckOptionalLikeCtor<_Up, _Up &&>::template __enable_implicit<_Up>
- , int> = 0>
- _LIBCPP_INLINE_VISIBILITY
- _LIBCPP_CONSTEXPR_AFTER_CXX17 optional(optional<_Up>&& __v)
- {
- this->__construct_from(_VSTD::move(__v));
- }
- template <class _Up, enable_if_t<
- _CheckOptionalLikeCtor<_Up, _Up &&>::template __enable_explicit<_Up>
- , int> = 0>
- _LIBCPP_INLINE_VISIBILITY
- _LIBCPP_CONSTEXPR_AFTER_CXX17 explicit optional(optional<_Up>&& __v)
- {
- this->__construct_from(_VSTD::move(__v));
- }
- #if _LIBCPP_STD_VER > 20
- template<class _Fp, class... _Args>
- _LIBCPP_HIDE_FROM_ABI
- constexpr explicit optional(__optional_construct_from_invoke_tag, _Fp&& __f, _Args&&... __args)
- : __base(__optional_construct_from_invoke_tag{}, _VSTD::forward<_Fp>(__f), _VSTD::forward<_Args>(__args)...) {
- }
- #endif
- _LIBCPP_INLINE_VISIBILITY
- _LIBCPP_CONSTEXPR_AFTER_CXX17 optional& operator=(nullopt_t) noexcept
- {
- reset();
- return *this;
- }
- _LIBCPP_INLINE_VISIBILITY optional& operator=(const optional&) = default;
- _LIBCPP_INLINE_VISIBILITY optional& operator=(optional&&) = default;
- // LWG2756
- template <class _Up = value_type,
- class = enable_if_t<
- _And<
- _IsNotSame<__uncvref_t<_Up>, optional>,
- _Or<
- _IsNotSame<__uncvref_t<_Up>, value_type>,
- _Not<is_scalar<value_type>>
- >,
- is_constructible<value_type, _Up>,
- is_assignable<value_type&, _Up>
- >::value>
- >
- _LIBCPP_INLINE_VISIBILITY
- _LIBCPP_CONSTEXPR_AFTER_CXX17 optional&
- operator=(_Up&& __v)
- {
- if (this->has_value())
- this->__get() = _VSTD::forward<_Up>(__v);
- else
- this->__construct(_VSTD::forward<_Up>(__v));
- return *this;
- }
- // LWG2756
- template <class _Up, enable_if_t<
- _CheckOptionalLikeAssign<_Up, _Up const&>::template __enable_assign<_Up>
- , int> = 0>
- _LIBCPP_INLINE_VISIBILITY
- _LIBCPP_CONSTEXPR_AFTER_CXX17 optional&
- operator=(const optional<_Up>& __v)
- {
- this->__assign_from(__v);
- return *this;
- }
- // LWG2756
- template <class _Up, enable_if_t<
- _CheckOptionalLikeCtor<_Up, _Up &&>::template __enable_assign<_Up>
- , int> = 0>
- _LIBCPP_INLINE_VISIBILITY
- _LIBCPP_CONSTEXPR_AFTER_CXX17 optional&
- operator=(optional<_Up>&& __v)
- {
- this->__assign_from(_VSTD::move(__v));
- return *this;
- }
- template <class... _Args,
- class = enable_if_t
- <
- is_constructible_v<value_type, _Args...>
- >
- >
- _LIBCPP_INLINE_VISIBILITY
- _LIBCPP_CONSTEXPR_AFTER_CXX17 _Tp &
- emplace(_Args&&... __args)
- {
- reset();
- this->__construct(_VSTD::forward<_Args>(__args)...);
- return this->__get();
- }
- template <class _Up, class... _Args,
- class = enable_if_t
- <
- is_constructible_v<value_type, initializer_list<_Up>&, _Args...>
- >
- >
- _LIBCPP_INLINE_VISIBILITY
- _LIBCPP_CONSTEXPR_AFTER_CXX17 _Tp &
- emplace(initializer_list<_Up> __il, _Args&&... __args)
- {
- reset();
- this->__construct(__il, _VSTD::forward<_Args>(__args)...);
- return this->__get();
- }
- _LIBCPP_INLINE_VISIBILITY
- _LIBCPP_CONSTEXPR_AFTER_CXX17 void swap(optional& __opt)
- noexcept(is_nothrow_move_constructible_v<value_type> &&
- is_nothrow_swappable_v<value_type>)
- {
- if (this->has_value() == __opt.has_value())
- {
- using _VSTD::swap;
- if (this->has_value())
- swap(this->__get(), __opt.__get());
- }
- else
- {
- if (this->has_value())
- {
- __opt.__construct(_VSTD::move(this->__get()));
- reset();
- }
- else
- {
- this->__construct(_VSTD::move(__opt.__get()));
- __opt.reset();
- }
- }
- }
- _LIBCPP_INLINE_VISIBILITY
- constexpr
- add_pointer_t<value_type const>
- operator->() const
- {
- _LIBCPP_ASSERT(this->has_value(), "optional operator-> called on a disengaged value");
- return _VSTD::addressof(this->__get());
- }
- _LIBCPP_INLINE_VISIBILITY
- constexpr
- add_pointer_t<value_type>
- operator->()
- {
- _LIBCPP_ASSERT(this->has_value(), "optional operator-> called on a disengaged value");
- return _VSTD::addressof(this->__get());
- }
- _LIBCPP_INLINE_VISIBILITY
- constexpr
- const value_type&
- operator*() const& noexcept
- {
- _LIBCPP_ASSERT(this->has_value(), "optional operator* called on a disengaged value");
- return this->__get();
- }
- _LIBCPP_INLINE_VISIBILITY
- constexpr
- value_type&
- operator*() & noexcept
- {
- _LIBCPP_ASSERT(this->has_value(), "optional operator* called on a disengaged value");
- return this->__get();
- }
- _LIBCPP_INLINE_VISIBILITY
- constexpr
- value_type&&
- operator*() && noexcept
- {
- _LIBCPP_ASSERT(this->has_value(), "optional operator* called on a disengaged value");
- return _VSTD::move(this->__get());
- }
- _LIBCPP_INLINE_VISIBILITY
- constexpr
- const value_type&&
- operator*() const&& noexcept
- {
- _LIBCPP_ASSERT(this->has_value(), "optional operator* called on a disengaged value");
- return _VSTD::move(this->__get());
- }
- _LIBCPP_INLINE_VISIBILITY
- constexpr explicit operator bool() const noexcept { return has_value(); }
- using __base::has_value;
- using __base::__get;
- _LIBCPP_INLINE_VISIBILITY
- _LIBCPP_AVAILABILITY_THROW_BAD_OPTIONAL_ACCESS
- constexpr value_type const& value() const&
- {
- if (!this->has_value())
- __throw_bad_optional_access();
- return this->__get();
- }
- _LIBCPP_INLINE_VISIBILITY
- _LIBCPP_AVAILABILITY_THROW_BAD_OPTIONAL_ACCESS
- constexpr value_type& value() &
- {
- if (!this->has_value())
- __throw_bad_optional_access();
- return this->__get();
- }
- _LIBCPP_INLINE_VISIBILITY
- _LIBCPP_AVAILABILITY_THROW_BAD_OPTIONAL_ACCESS
- constexpr value_type&& value() &&
- {
- if (!this->has_value())
- __throw_bad_optional_access();
- return _VSTD::move(this->__get());
- }
- _LIBCPP_INLINE_VISIBILITY
- _LIBCPP_AVAILABILITY_THROW_BAD_OPTIONAL_ACCESS
- constexpr value_type const&& value() const&&
- {
- if (!this->has_value())
- __throw_bad_optional_access();
- return _VSTD::move(this->__get());
- }
- template <class _Up>
- _LIBCPP_INLINE_VISIBILITY
- constexpr value_type value_or(_Up&& __v) const&
- {
- static_assert(is_copy_constructible_v<value_type>,
- "optional<T>::value_or: T must be copy constructible");
- static_assert(is_convertible_v<_Up, value_type>,
- "optional<T>::value_or: U must be convertible to T");
- return this->has_value() ? this->__get() :
- static_cast<value_type>(_VSTD::forward<_Up>(__v));
- }
- template <class _Up>
- _LIBCPP_INLINE_VISIBILITY
- constexpr value_type value_or(_Up&& __v) &&
- {
- static_assert(is_move_constructible_v<value_type>,
- "optional<T>::value_or: T must be move constructible");
- static_assert(is_convertible_v<_Up, value_type>,
- "optional<T>::value_or: U must be convertible to T");
- return this->has_value() ? _VSTD::move(this->__get()) :
- static_cast<value_type>(_VSTD::forward<_Up>(__v));
- }
- #if _LIBCPP_STD_VER > 20
- template<class _Func>
- _LIBCPP_HIDE_FROM_ABI _LIBCPP_AVAILABILITY_THROW_BAD_OPTIONAL_ACCESS
- constexpr auto and_then(_Func&& __f) & {
- using _Up = invoke_result_t<_Func, value_type&>;
- static_assert(__is_std_optional<remove_cvref_t<_Up>>::value,
- "Result of f(value()) must be a specialization of std::optional");
- if (*this)
- return _VSTD::invoke(_VSTD::forward<_Func>(__f), value());
- return remove_cvref_t<_Up>();
- }
- template<class _Func>
- _LIBCPP_HIDE_FROM_ABI _LIBCPP_AVAILABILITY_THROW_BAD_OPTIONAL_ACCESS
- constexpr auto and_then(_Func&& __f) const& {
- using _Up = invoke_result_t<_Func, const value_type&>;
- static_assert(__is_std_optional<remove_cvref_t<_Up>>::value,
- "Result of f(value()) must be a specialization of std::optional");
- if (*this)
- return _VSTD::invoke(_VSTD::forward<_Func>(__f), value());
- return remove_cvref_t<_Up>();
- }
- template<class _Func>
- _LIBCPP_HIDE_FROM_ABI _LIBCPP_AVAILABILITY_THROW_BAD_OPTIONAL_ACCESS
- constexpr auto and_then(_Func&& __f) && {
- using _Up = invoke_result_t<_Func, value_type&&>;
- static_assert(__is_std_optional<remove_cvref_t<_Up>>::value,
- "Result of f(std::move(value())) must be a specialization of std::optional");
- if (*this)
- return _VSTD::invoke(_VSTD::forward<_Func>(__f), _VSTD::move(value()));
- return remove_cvref_t<_Up>();
- }
- template<class _Func>
- _LIBCPP_HIDE_FROM_ABI
- constexpr auto and_then(_Func&& __f) const&& {
- using _Up = invoke_result_t<_Func, const value_type&&>;
- static_assert(__is_std_optional<remove_cvref_t<_Up>>::value,
- "Result of f(std::move(value())) must be a specialization of std::optional");
- if (*this)
- return _VSTD::invoke(_VSTD::forward<_Func>(__f), _VSTD::move(value()));
- return remove_cvref_t<_Up>();
- }
- template<class _Func>
- _LIBCPP_HIDE_FROM_ABI _LIBCPP_AVAILABILITY_THROW_BAD_OPTIONAL_ACCESS
- constexpr auto transform(_Func&& __f) & {
- using _Up = remove_cv_t<invoke_result_t<_Func, value_type&>>;
- static_assert(!is_array_v<_Up>, "Result of f(value()) should not be an Array");
- static_assert(!is_same_v<_Up, in_place_t>,
- "Result of f(value()) should not be std::in_place_t");
- static_assert(!is_same_v<_Up, nullopt_t>,
- "Result of f(value()) should not be std::nullopt_t");
- static_assert(is_object_v<_Up>, "Result of f(value()) should be an object type");
- if (*this)
- return optional<_Up>(__optional_construct_from_invoke_tag{}, _VSTD::forward<_Func>(__f), value());
- return optional<_Up>();
- }
- template<class _Func>
- _LIBCPP_HIDE_FROM_ABI _LIBCPP_AVAILABILITY_THROW_BAD_OPTIONAL_ACCESS
- constexpr auto transform(_Func&& __f) const& {
- using _Up = remove_cv_t<invoke_result_t<_Func, const value_type&>>;
- static_assert(!is_array_v<_Up>, "Result of f(value()) should not be an Array");
- static_assert(!is_same_v<_Up, in_place_t>,
- "Result of f(value()) should not be std::in_place_t");
- static_assert(!is_same_v<_Up, nullopt_t>,
- "Result of f(value()) should not be std::nullopt_t");
- static_assert(is_object_v<_Up>, "Result of f(value()) should be an object type");
- if (*this)
- return optional<_Up>(__optional_construct_from_invoke_tag{}, _VSTD::forward<_Func>(__f), value());
- return optional<_Up>();
- }
- template<class _Func>
- _LIBCPP_HIDE_FROM_ABI _LIBCPP_AVAILABILITY_THROW_BAD_OPTIONAL_ACCESS
- constexpr auto transform(_Func&& __f) && {
- using _Up = remove_cv_t<invoke_result_t<_Func, value_type&&>>;
- static_assert(!is_array_v<_Up>, "Result of f(std::move(value())) should not be an Array");
- static_assert(!is_same_v<_Up, in_place_t>,
- "Result of f(std::move(value())) should not be std::in_place_t");
- static_assert(!is_same_v<_Up, nullopt_t>,
- "Result of f(std::move(value())) should not be std::nullopt_t");
- static_assert(is_object_v<_Up>, "Result of f(std::move(value())) should be an object type");
- if (*this)
- return optional<_Up>(__optional_construct_from_invoke_tag{}, _VSTD::forward<_Func>(__f), _VSTD::move(value()));
- return optional<_Up>();
- }
- template<class _Func>
- _LIBCPP_HIDE_FROM_ABI _LIBCPP_AVAILABILITY_THROW_BAD_OPTIONAL_ACCESS
- constexpr auto transform(_Func&& __f) const&& {
- using _Up = remove_cvref_t<invoke_result_t<_Func, const value_type&&>>;
- static_assert(!is_array_v<_Up>, "Result of f(std::move(value())) should not be an Array");
- static_assert(!is_same_v<_Up, in_place_t>,
- "Result of f(std::move(value())) should not be std::in_place_t");
- static_assert(!is_same_v<_Up, nullopt_t>,
- "Result of f(std::move(value())) should not be std::nullopt_t");
- static_assert(is_object_v<_Up>, "Result of f(std::move(value())) should be an object type");
- if (*this)
- return optional<_Up>(__optional_construct_from_invoke_tag{}, _VSTD::forward<_Func>(__f), _VSTD::move(value()));
- return optional<_Up>();
- }
- template<invocable _Func>
- _LIBCPP_HIDE_FROM_ABI
- constexpr optional or_else(_Func&& __f) const& requires is_copy_constructible_v<value_type> {
- static_assert(is_same_v<remove_cvref_t<invoke_result_t<_Func>>, optional>,
- "Result of f() should be the same type as this optional");
- if (*this)
- return *this;
- return _VSTD::forward<_Func>(__f)();
- }
- template<invocable _Func>
- _LIBCPP_HIDE_FROM_ABI
- constexpr optional or_else(_Func&& __f) && requires is_move_constructible_v<value_type> {
- static_assert(is_same_v<remove_cvref_t<invoke_result_t<_Func>>, optional>,
- "Result of f() should be the same type as this optional");
- if (*this)
- return _VSTD::move(*this);
- return _VSTD::forward<_Func>(__f)();
- }
- #endif // _LIBCPP_STD_VER > 20
- using __base::reset;
- };
- #if _LIBCPP_STD_VER >= 17
- template<class _Tp>
- optional(_Tp) -> optional<_Tp>;
- #endif
- // Comparisons between optionals
- template <class _Tp, class _Up>
- _LIBCPP_INLINE_VISIBILITY constexpr
- enable_if_t<
- is_convertible_v<decltype(declval<const _Tp&>() ==
- declval<const _Up&>()), bool>,
- bool
- >
- operator==(const optional<_Tp>& __x, const optional<_Up>& __y)
- {
- if (static_cast<bool>(__x) != static_cast<bool>(__y))
- return false;
- if (!static_cast<bool>(__x))
- return true;
- return *__x == *__y;
- }
- template <class _Tp, class _Up>
- _LIBCPP_INLINE_VISIBILITY constexpr
- enable_if_t<
- is_convertible_v<decltype(declval<const _Tp&>() !=
- declval<const _Up&>()), bool>,
- bool
- >
- operator!=(const optional<_Tp>& __x, const optional<_Up>& __y)
- {
- if (static_cast<bool>(__x) != static_cast<bool>(__y))
- return true;
- if (!static_cast<bool>(__x))
- return false;
- return *__x != *__y;
- }
- template <class _Tp, class _Up>
- _LIBCPP_INLINE_VISIBILITY constexpr
- enable_if_t<
- is_convertible_v<decltype(declval<const _Tp&>() <
- declval<const _Up&>()), bool>,
- bool
- >
- operator<(const optional<_Tp>& __x, const optional<_Up>& __y)
- {
- if (!static_cast<bool>(__y))
- return false;
- if (!static_cast<bool>(__x))
- return true;
- return *__x < *__y;
- }
- template <class _Tp, class _Up>
- _LIBCPP_INLINE_VISIBILITY constexpr
- enable_if_t<
- is_convertible_v<decltype(declval<const _Tp&>() >
- declval<const _Up&>()), bool>,
- bool
- >
- operator>(const optional<_Tp>& __x, const optional<_Up>& __y)
- {
- if (!static_cast<bool>(__x))
- return false;
- if (!static_cast<bool>(__y))
- return true;
- return *__x > *__y;
- }
- template <class _Tp, class _Up>
- _LIBCPP_INLINE_VISIBILITY constexpr
- enable_if_t<
- is_convertible_v<decltype(declval<const _Tp&>() <=
- declval<const _Up&>()), bool>,
- bool
- >
- operator<=(const optional<_Tp>& __x, const optional<_Up>& __y)
- {
- if (!static_cast<bool>(__x))
- return true;
- if (!static_cast<bool>(__y))
- return false;
- return *__x <= *__y;
- }
- template <class _Tp, class _Up>
- _LIBCPP_INLINE_VISIBILITY constexpr
- enable_if_t<
- is_convertible_v<decltype(declval<const _Tp&>() >=
- declval<const _Up&>()), bool>,
- bool
- >
- operator>=(const optional<_Tp>& __x, const optional<_Up>& __y)
- {
- if (!static_cast<bool>(__y))
- return true;
- if (!static_cast<bool>(__x))
- return false;
- return *__x >= *__y;
- }
- // Comparisons with nullopt
- template <class _Tp>
- _LIBCPP_INLINE_VISIBILITY constexpr
- bool
- operator==(const optional<_Tp>& __x, nullopt_t) noexcept
- {
- return !static_cast<bool>(__x);
- }
- template <class _Tp>
- _LIBCPP_INLINE_VISIBILITY constexpr
- bool
- operator==(nullopt_t, const optional<_Tp>& __x) noexcept
- {
- return !static_cast<bool>(__x);
- }
- template <class _Tp>
- _LIBCPP_INLINE_VISIBILITY constexpr
- bool
- operator!=(const optional<_Tp>& __x, nullopt_t) noexcept
- {
- return static_cast<bool>(__x);
- }
- template <class _Tp>
- _LIBCPP_INLINE_VISIBILITY constexpr
- bool
- operator!=(nullopt_t, const optional<_Tp>& __x) noexcept
- {
- return static_cast<bool>(__x);
- }
- template <class _Tp>
- _LIBCPP_INLINE_VISIBILITY constexpr
- bool
- operator<(const optional<_Tp>&, nullopt_t) noexcept
- {
- return false;
- }
- template <class _Tp>
- _LIBCPP_INLINE_VISIBILITY constexpr
- bool
- operator<(nullopt_t, const optional<_Tp>& __x) noexcept
- {
- return static_cast<bool>(__x);
- }
- template <class _Tp>
- _LIBCPP_INLINE_VISIBILITY constexpr
- bool
- operator<=(const optional<_Tp>& __x, nullopt_t) noexcept
- {
- return !static_cast<bool>(__x);
- }
- template <class _Tp>
- _LIBCPP_INLINE_VISIBILITY constexpr
- bool
- operator<=(nullopt_t, const optional<_Tp>&) noexcept
- {
- return true;
- }
- template <class _Tp>
- _LIBCPP_INLINE_VISIBILITY constexpr
- bool
- operator>(const optional<_Tp>& __x, nullopt_t) noexcept
- {
- return static_cast<bool>(__x);
- }
- template <class _Tp>
- _LIBCPP_INLINE_VISIBILITY constexpr
- bool
- operator>(nullopt_t, const optional<_Tp>&) noexcept
- {
- return false;
- }
- template <class _Tp>
- _LIBCPP_INLINE_VISIBILITY constexpr
- bool
- operator>=(const optional<_Tp>&, nullopt_t) noexcept
- {
- return true;
- }
- template <class _Tp>
- _LIBCPP_INLINE_VISIBILITY constexpr
- bool
- operator>=(nullopt_t, const optional<_Tp>& __x) noexcept
- {
- return !static_cast<bool>(__x);
- }
- // Comparisons with T
- template <class _Tp, class _Up>
- _LIBCPP_INLINE_VISIBILITY constexpr
- enable_if_t<
- is_convertible_v<decltype(declval<const _Tp&>() ==
- declval<const _Up&>()), bool>,
- bool
- >
- operator==(const optional<_Tp>& __x, const _Up& __v)
- {
- return static_cast<bool>(__x) ? *__x == __v : false;
- }
- template <class _Tp, class _Up>
- _LIBCPP_INLINE_VISIBILITY constexpr
- enable_if_t<
- is_convertible_v<decltype(declval<const _Tp&>() ==
- declval<const _Up&>()), bool>,
- bool
- >
- operator==(const _Tp& __v, const optional<_Up>& __x)
- {
- return static_cast<bool>(__x) ? __v == *__x : false;
- }
- template <class _Tp, class _Up>
- _LIBCPP_INLINE_VISIBILITY constexpr
- enable_if_t<
- is_convertible_v<decltype(declval<const _Tp&>() !=
- declval<const _Up&>()), bool>,
- bool
- >
- operator!=(const optional<_Tp>& __x, const _Up& __v)
- {
- return static_cast<bool>(__x) ? *__x != __v : true;
- }
- template <class _Tp, class _Up>
- _LIBCPP_INLINE_VISIBILITY constexpr
- enable_if_t<
- is_convertible_v<decltype(declval<const _Tp&>() !=
- declval<const _Up&>()), bool>,
- bool
- >
- operator!=(const _Tp& __v, const optional<_Up>& __x)
- {
- return static_cast<bool>(__x) ? __v != *__x : true;
- }
- template <class _Tp, class _Up>
- _LIBCPP_INLINE_VISIBILITY constexpr
- enable_if_t<
- is_convertible_v<decltype(declval<const _Tp&>() <
- declval<const _Up&>()), bool>,
- bool
- >
- operator<(const optional<_Tp>& __x, const _Up& __v)
- {
- return static_cast<bool>(__x) ? *__x < __v : true;
- }
- template <class _Tp, class _Up>
- _LIBCPP_INLINE_VISIBILITY constexpr
- enable_if_t<
- is_convertible_v<decltype(declval<const _Tp&>() <
- declval<const _Up&>()), bool>,
- bool
- >
- operator<(const _Tp& __v, const optional<_Up>& __x)
- {
- return static_cast<bool>(__x) ? __v < *__x : false;
- }
- template <class _Tp, class _Up>
- _LIBCPP_INLINE_VISIBILITY constexpr
- enable_if_t<
- is_convertible_v<decltype(declval<const _Tp&>() <=
- declval<const _Up&>()), bool>,
- bool
- >
- operator<=(const optional<_Tp>& __x, const _Up& __v)
- {
- return static_cast<bool>(__x) ? *__x <= __v : true;
- }
- template <class _Tp, class _Up>
- _LIBCPP_INLINE_VISIBILITY constexpr
- enable_if_t<
- is_convertible_v<decltype(declval<const _Tp&>() <=
- declval<const _Up&>()), bool>,
- bool
- >
- operator<=(const _Tp& __v, const optional<_Up>& __x)
- {
- return static_cast<bool>(__x) ? __v <= *__x : false;
- }
- template <class _Tp, class _Up>
- _LIBCPP_INLINE_VISIBILITY constexpr
- enable_if_t<
- is_convertible_v<decltype(declval<const _Tp&>() >
- declval<const _Up&>()), bool>,
- bool
- >
- operator>(const optional<_Tp>& __x, const _Up& __v)
- {
- return static_cast<bool>(__x) ? *__x > __v : false;
- }
- template <class _Tp, class _Up>
- _LIBCPP_INLINE_VISIBILITY constexpr
- enable_if_t<
- is_convertible_v<decltype(declval<const _Tp&>() >
- declval<const _Up&>()), bool>,
- bool
- >
- operator>(const _Tp& __v, const optional<_Up>& __x)
- {
- return static_cast<bool>(__x) ? __v > *__x : true;
- }
- template <class _Tp, class _Up>
- _LIBCPP_INLINE_VISIBILITY constexpr
- enable_if_t<
- is_convertible_v<decltype(declval<const _Tp&>() >=
- declval<const _Up&>()), bool>,
- bool
- >
- operator>=(const optional<_Tp>& __x, const _Up& __v)
- {
- return static_cast<bool>(__x) ? *__x >= __v : false;
- }
- template <class _Tp, class _Up>
- _LIBCPP_INLINE_VISIBILITY constexpr
- enable_if_t<
- is_convertible_v<decltype(declval<const _Tp&>() >=
- declval<const _Up&>()), bool>,
- bool
- >
- operator>=(const _Tp& __v, const optional<_Up>& __x)
- {
- return static_cast<bool>(__x) ? __v >= *__x : true;
- }
- template <class _Tp>
- inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX17
- enable_if_t<
- is_move_constructible_v<_Tp> && is_swappable_v<_Tp>,
- void
- >
- swap(optional<_Tp>& __x, optional<_Tp>& __y) noexcept(noexcept(__x.swap(__y)))
- {
- __x.swap(__y);
- }
- template <class _Tp>
- _LIBCPP_INLINE_VISIBILITY constexpr
- optional<decay_t<_Tp>> make_optional(_Tp&& __v)
- {
- return optional<decay_t<_Tp>>(_VSTD::forward<_Tp>(__v));
- }
- template <class _Tp, class... _Args>
- _LIBCPP_INLINE_VISIBILITY constexpr
- optional<_Tp> make_optional(_Args&&... __args)
- {
- return optional<_Tp>(in_place, _VSTD::forward<_Args>(__args)...);
- }
- template <class _Tp, class _Up, class... _Args>
- _LIBCPP_INLINE_VISIBILITY constexpr
- optional<_Tp> make_optional(initializer_list<_Up> __il, _Args&&... __args)
- {
- return optional<_Tp>(in_place, __il, _VSTD::forward<_Args>(__args)...);
- }
- template <class _Tp>
- struct _LIBCPP_TEMPLATE_VIS hash<
- __enable_hash_helper<optional<_Tp>, remove_const_t<_Tp>>
- >
- {
- #if _LIBCPP_STD_VER <= 17 || defined(_LIBCPP_ENABLE_CXX20_REMOVED_BINDER_TYPEDEFS)
- _LIBCPP_DEPRECATED_IN_CXX17 typedef optional<_Tp> argument_type;
- _LIBCPP_DEPRECATED_IN_CXX17 typedef size_t result_type;
- #endif
- _LIBCPP_INLINE_VISIBILITY
- size_t operator()(const optional<_Tp>& __opt) const
- {
- return static_cast<bool>(__opt) ? hash<remove_const_t<_Tp>>()(*__opt) : 0;
- }
- };
- _LIBCPP_END_NAMESPACE_STD
- #endif // _LIBCPP_STD_VER > 14
- #endif // _LIBCPP_OPTIONAL
|