Update contrib.
1 // Copyright (C) 2003, Fernando Luis Cacciola Carballal.
3 // Use, modification, and distribution is subject to the Boost Software
4 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
7 // See http://www.boost.org/lib/optional for documentation.
9 // You are welcome to contact the author at:
10 // fernando_cacciola@hotmail.com
12 #ifndef BOOST_OPTIONAL_OPTIONAL_FLC_19NOV2002_HPP
13 #define BOOST_OPTIONAL_OPTIONAL_FLC_19NOV2002_HPP
18 #include "boost/config.hpp"
19 #include "boost/assert.hpp"
20 #include "boost/type.hpp"
21 #include "boost/type_traits/alignment_of.hpp"
22 #include "boost/type_traits/type_with_alignment.hpp"
23 #include "boost/type_traits/remove_reference.hpp"
24 #include "boost/type_traits/is_reference.hpp"
25 #include "boost/mpl/if.hpp"
26 #include "boost/mpl/bool.hpp"
27 #include "boost/mpl/not.hpp"
28 #include "boost/detail/reference_content.hpp"
29 #include "boost/none.hpp"
30 #include "boost/utility/compare_pointees.hpp"
32 #include "boost/optional/optional_fwd.hpp"
34 #if BOOST_WORKAROUND(BOOST_MSVC, == 1200)
35 // VC6.0 has the following bug:
36 // When a templated assignment operator exist, an implicit conversion
37 // constructing an optional<T> is used when assigment of the form:
38 // optional<T> opt ; opt = T(...);
40 // However, optional's ctor is _explicit_ and the assignemt shouldn't compile.
41 // Therefore, for VC6.0 templated assignment is disabled.
43 #define BOOST_OPTIONAL_NO_CONVERTING_ASSIGNMENT
46 #if BOOST_WORKAROUND(BOOST_MSVC, == 1300)
47 // VC7.0 has the following bug:
48 // When both a non-template and a template copy-ctor exist
49 // and the templated version is made 'explicit', the explicit is also
50 // given to the non-templated version, making the class non-implicitely-copyable.
52 #define BOOST_OPTIONAL_NO_CONVERTING_COPY_CTOR
55 #if BOOST_WORKAROUND(BOOST_MSVC, <= 1300) || BOOST_WORKAROUND(BOOST_INTEL_CXX_VERSION,<=700)
56 // AFAICT only VC7.1 correctly resolves the overload set
57 // that includes the in-place factory taking functions,
58 // so for the other VC versions, in-place factory support
60 #define BOOST_OPTIONAL_NO_INPLACE_FACTORY_SUPPORT
63 #if BOOST_WORKAROUND(__BORLANDC__, <= 0x551)
64 // BCB (5.5.1) cannot parse the nested template struct in an inplace factory.
65 #define BOOST_OPTIONAL_NO_INPLACE_FACTORY_SUPPORT
68 #if !defined(BOOST_OPTIONAL_NO_INPLACE_FACTORY_SUPPORT) \
69 && BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x581) )
70 // BCB (up to 5.64) has the following bug:
71 // If there is a member function/operator template of the form
72 // template<class Expr> mfunc( Expr expr ) ;
73 // some calls are resolved to this even if there are other better matches.
74 // The effect of this bug is that calls to converting ctors and assignments
75 // are incrorrectly sink to this general catch-all member function template as shown above.
76 #define BOOST_OPTIONAL_WEAK_OVERLOAD_RESOLUTION
79 // Daniel Wallin discovered that bind/apply.hpp badly interacts with the apply<>
80 // member template of a factory as used in the optional<> implementation.
81 // He proposed this simple fix which is to move the call to apply<> outside
83 namespace boost_optional_detail
85 template <class T, class Factory>
86 void construct(Factory const& factory, void* address)
88 factory.BOOST_NESTED_TEMPLATE apply<T>(address);
95 class in_place_factory_base ;
96 class typed_in_place_factory_base ;
98 namespace optional_detail {
100 // This local class is used instead of that in "aligned_storage.hpp"
101 // because I've found the 'official' class to ICE BCB5.5
102 // when some types are used with optional<>
103 // (due to sizeof() passed down as a non-type template parameter)
105 class aligned_storage
107 // Borland ICEs if unnamed unions are used for this!
110 char data[ sizeof(T) ];
111 BOOST_DEDUCED_TYPENAME type_with_alignment<
112 ::boost::alignment_of<T>::value >::type aligner_;
117 void const* address() const { return &dummy_.data[0]; }
118 void * address() { return &dummy_.data[0]; }
122 struct types_when_isnt_ref
124 typedef T const& reference_const_type ;
125 typedef T & reference_type ;
126 typedef T const* pointer_const_type ;
127 typedef T * pointer_type ;
128 typedef T const& argument_type ;
131 struct types_when_is_ref
133 typedef BOOST_DEDUCED_TYPENAME remove_reference<T>::type raw_type ;
135 typedef raw_type& reference_const_type ;
136 typedef raw_type& reference_type ;
137 typedef raw_type* pointer_const_type ;
138 typedef raw_type* pointer_type ;
139 typedef raw_type& argument_type ;
142 struct optional_tag {} ;
145 class optional_base : public optional_tag
150 #if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
151 BOOST_DEDUCED_TYPENAME
153 ::boost::detail::make_reference_content<T>::type internal_type ;
155 typedef aligned_storage<internal_type> storage_type ;
157 typedef types_when_isnt_ref<T> types_when_not_ref ;
158 typedef types_when_is_ref<T> types_when_ref ;
160 typedef optional_base<T> this_type ;
164 typedef T value_type ;
166 typedef mpl::true_ is_reference_tag ;
167 typedef mpl::false_ is_not_reference_tag ;
169 typedef BOOST_DEDUCED_TYPENAME is_reference<T>::type is_reference_predicate ;
171 typedef BOOST_DEDUCED_TYPENAME mpl::if_<is_reference_predicate,types_when_ref,types_when_not_ref>::type types ;
173 typedef bool (this_type::*unspecified_bool_type)() const;
175 typedef BOOST_DEDUCED_TYPENAME types::reference_type reference_type ;
176 typedef BOOST_DEDUCED_TYPENAME types::reference_const_type reference_const_type ;
177 typedef BOOST_DEDUCED_TYPENAME types::pointer_type pointer_type ;
178 typedef BOOST_DEDUCED_TYPENAME types::pointer_const_type pointer_const_type ;
179 typedef BOOST_DEDUCED_TYPENAME types::argument_type argument_type ;
181 // Creates an optional<T> uninitialized.
185 m_initialized(false) {}
187 // Creates an optional<T> uninitialized.
189 optional_base ( none_t )
191 m_initialized(false) {}
193 // Creates an optional<T> initialized with 'val'.
194 // Can throw if T::T(T const&) does
195 optional_base ( argument_type val )
202 // Creates an optional<T> initialized with 'val' IFF cond is true, otherwise creates an uninitialzed optional<T>.
203 // Can throw if T::T(T const&) does
204 optional_base ( bool cond, argument_type val )
212 // Creates a deep copy of another optional<T>
213 // Can throw if T::T(T const&) does
214 optional_base ( optional_base const& rhs )
218 if ( rhs.is_initialized() )
219 construct(rhs.get_impl());
223 // This is used for both converting and in-place constructions.
224 // Derived classes use the 'tag' to select the appropriate
225 // implementation (the correct 'construct()' overload)
227 explicit optional_base ( Expr const& expr, Expr const* tag )
236 // No-throw (assuming T::~T() doesn't)
237 ~optional_base() { destroy() ; }
239 // Assigns from another optional<T> (deep-copies the rhs value)
240 void assign ( optional_base const& rhs )
242 if (is_initialized())
244 if ( rhs.is_initialized() )
245 assign_value(rhs.get_impl(), is_reference_predicate() );
250 if ( rhs.is_initialized() )
251 construct(rhs.get_impl());
255 // Assigns from another _convertible_ optional<U> (deep-copies the rhs value)
257 void assign ( optional<U> const& rhs )
259 if (is_initialized())
261 if ( rhs.is_initialized() )
262 assign_value(static_cast<value_type>(rhs.get()), is_reference_predicate() );
267 if ( rhs.is_initialized() )
268 construct(static_cast<value_type>(rhs.get()));
272 // Assigns from a T (deep-copies the rhs value)
273 void assign ( argument_type val )
275 if (is_initialized())
276 assign_value(val, is_reference_predicate() );
280 // Assigns from "none", destroying the current value, if any, leaving this UNINITIALIZED
281 // No-throw (assuming T::~T() doesn't)
282 void assign ( none_t ) { destroy(); }
284 #ifndef BOOST_OPTIONAL_NO_INPLACE_FACTORY_SUPPORT
286 void assign_expr ( Expr const& expr, Expr const* tag )
288 if (is_initialized())
289 assign_expr_to_initialized(expr,tag);
290 else construct(expr,tag);
296 // Destroys the current value, if any, leaving this UNINITIALIZED
297 // No-throw (assuming T::~T() doesn't)
298 void reset() { destroy(); }
300 // Replaces the current value -if any- with 'val'
301 void reset ( argument_type val ) { assign(val); }
303 // Returns a pointer to the value if this is initialized, otherwise,
306 pointer_const_type get_ptr() const { return m_initialized ? get_ptr_impl() : 0 ; }
307 pointer_type get_ptr() { return m_initialized ? get_ptr_impl() : 0 ; }
309 bool is_initialized() const { return m_initialized ; }
313 void construct ( argument_type val )
315 new (m_storage.address()) internal_type(val) ;
316 m_initialized = true ;
319 #ifndef BOOST_OPTIONAL_NO_INPLACE_FACTORY_SUPPORT
320 // Constructs in-place using the given factory
322 void construct ( Expr const& factory, in_place_factory_base const* )
324 BOOST_STATIC_ASSERT ( ::boost::mpl::not_<is_reference_predicate>::value ) ;
325 boost_optional_detail::construct<value_type>(factory, m_storage.address());
326 m_initialized = true ;
329 // Constructs in-place using the given typed factory
331 void construct ( Expr const& factory, typed_in_place_factory_base const* )
333 BOOST_STATIC_ASSERT ( ::boost::mpl::not_<is_reference_predicate>::value ) ;
334 factory.apply(m_storage.address()) ;
335 m_initialized = true ;
339 void assign_expr_to_initialized ( Expr const& factory, in_place_factory_base const* tag )
342 construct(factory,tag);
345 // Constructs in-place using the given typed factory
347 void assign_expr_to_initialized ( Expr const& factory, typed_in_place_factory_base const* tag )
350 construct(factory,tag);
354 // Constructs using any expression implicitely convertible to the single argument
355 // of a one-argument T constructor.
356 // Converting constructions of optional<T> from optional<U> uses this function with
357 // 'Expr' being of type 'U' and relying on a converting constructor of T from U.
359 void construct ( Expr const& expr, void const* )
361 new (m_storage.address()) internal_type(expr) ;
362 m_initialized = true ;
365 // Assigns using a form any expression implicitely convertible to the single argument
366 // of a T's assignment operator.
367 // Converting assignments of optional<T> from optional<U> uses this function with
368 // 'Expr' being of type 'U' and relying on a converting assignment of T from U.
370 void assign_expr_to_initialized ( Expr const& expr, void const* )
372 assign_value(expr, is_reference_predicate());
375 #ifdef BOOST_OPTIONAL_WEAK_OVERLOAD_RESOLUTION
376 // BCB5.64 (and probably lower versions) workaround.
377 // The in-place factories are supported by means of catch-all constructors
378 // and assignment operators (the functions are parameterized in terms of
379 // an arbitrary 'Expr' type)
380 // This compiler incorrectly resolves the overload set and sinks optional<T> and optional<U>
381 // to the 'Expr'-taking functions even though explicit overloads are present for them.
382 // Thus, the following overload is needed to properly handle the case when the 'lhs'
383 // is another optional.
385 // For VC<=70 compilers this workaround dosen't work becasue the comnpiler issues and error
386 // instead of choosing the wrong overload
388 // Notice that 'Expr' will be optional<T> or optional<U> (but not optional_base<..>)
390 void construct ( Expr const& expr, optional_tag const* )
392 if ( expr.is_initialized() )
394 // An exception can be thrown here.
395 // It it happens, THIS will be left uninitialized.
396 new (m_storage.address()) internal_type(expr.get()) ;
397 m_initialized = true ;
402 void assign_value ( argument_type val, is_not_reference_tag ) { get_impl() = val; }
403 void assign_value ( argument_type val, is_reference_tag ) { construct(val); }
408 destroy_impl(is_reference_predicate()) ;
411 unspecified_bool_type safe_bool() const { return m_initialized ? &this_type::is_initialized : 0 ; }
413 reference_const_type get_impl() const { return dereference(get_object(), is_reference_predicate() ) ; }
414 reference_type get_impl() { return dereference(get_object(), is_reference_predicate() ) ; }
416 pointer_const_type get_ptr_impl() const { return cast_ptr(get_object(), is_reference_predicate() ) ; }
417 pointer_type get_ptr_impl() { return cast_ptr(get_object(), is_reference_predicate() ) ; }
421 // internal_type can be either T or reference_content<T>
422 internal_type const* get_object() const { return static_cast<internal_type const*>(m_storage.address()); }
423 internal_type * get_object() { return static_cast<internal_type *> (m_storage.address()); }
425 // reference_content<T> lacks an implicit conversion to T&, so the following is needed to obtain a proper reference.
426 reference_const_type dereference( internal_type const* p, is_not_reference_tag ) const { return *p ; }
427 reference_type dereference( internal_type* p, is_not_reference_tag ) { return *p ; }
428 reference_const_type dereference( internal_type const* p, is_reference_tag ) const { return p->get() ; }
429 reference_type dereference( internal_type* p, is_reference_tag ) { return p->get() ; }
431 #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x581))
432 void destroy_impl ( is_not_reference_tag ) { get_ptr_impl()->internal_type::~internal_type() ; m_initialized = false ; }
434 void destroy_impl ( is_not_reference_tag ) { get_ptr_impl()->T::~T() ; m_initialized = false ; }
437 void destroy_impl ( is_reference_tag ) { m_initialized = false ; }
439 // If T is of reference type, trying to get a pointer to the held value must result in a compile-time error.
440 // Decent compilers should disallow conversions from reference_content<T>* to T*, but just in case,
441 // the following olverloads are used to filter out the case and guarantee an error in case of T being a reference.
442 pointer_const_type cast_ptr( internal_type const* p, is_not_reference_tag ) const { return p ; }
443 pointer_type cast_ptr( internal_type * p, is_not_reference_tag ) { return p ; }
444 pointer_const_type cast_ptr( internal_type const* p, is_reference_tag ) const { return &p->get() ; }
445 pointer_type cast_ptr( internal_type * p, is_reference_tag ) { return &p->get() ; }
448 storage_type m_storage ;
451 } // namespace optional_detail
454 class optional : public optional_detail::optional_base<T>
456 typedef optional_detail::optional_base<T> base ;
458 typedef BOOST_DEDUCED_TYPENAME base::unspecified_bool_type unspecified_bool_type ;
462 typedef optional<T> this_type ;
464 typedef BOOST_DEDUCED_TYPENAME base::value_type value_type ;
465 typedef BOOST_DEDUCED_TYPENAME base::reference_type reference_type ;
466 typedef BOOST_DEDUCED_TYPENAME base::reference_const_type reference_const_type ;
467 typedef BOOST_DEDUCED_TYPENAME base::pointer_type pointer_type ;
468 typedef BOOST_DEDUCED_TYPENAME base::pointer_const_type pointer_const_type ;
469 typedef BOOST_DEDUCED_TYPENAME base::argument_type argument_type ;
471 // Creates an optional<T> uninitialized.
473 optional() : base() {}
475 // Creates an optional<T> uninitialized.
477 optional( none_t none_ ) : base(none_) {}
479 // Creates an optional<T> initialized with 'val'.
480 // Can throw if T::T(T const&) does
481 optional ( argument_type val ) : base(val) {}
483 // Creates an optional<T> initialized with 'val' IFF cond is true, otherwise creates an uninitialized optional.
484 // Can throw if T::T(T const&) does
485 optional ( bool cond, argument_type val ) : base(cond,val) {}
487 #ifndef BOOST_OPTIONAL_NO_CONVERTING_COPY_CTOR
488 // NOTE: MSVC needs templated versions first
490 // Creates a deep copy of another convertible optional<U>
491 // Requires a valid conversion from U to T.
492 // Can throw if T::T(U const&) does
494 explicit optional ( optional<U> const& rhs )
498 if ( rhs.is_initialized() )
499 this->construct(rhs.get());
503 #ifndef BOOST_OPTIONAL_NO_INPLACE_FACTORY_SUPPORT
504 // Creates an optional<T> with an expression which can be either
505 // (a) An instance of InPlaceFactory (i.e. in_place(a,b,...,n);
506 // (b) An instance of TypedInPlaceFactory ( i.e. in_place<T>(a,b,...,n);
507 // (c) Any expression implicitely convertible to the single type
508 // of a one-argument T's constructor.
509 // (d*) Weak compilers (BCB) might also resolved Expr as optional<T> and optional<U>
510 // even though explicit overloads are present for these.
511 // Depending on the above some T ctor is called.
512 // Can throw is the resolved T ctor throws.
514 explicit optional ( Expr const& expr ) : base(expr,&expr) {}
517 // Creates a deep copy of another optional<T>
518 // Can throw if T::T(T const&) does
519 optional ( optional const& rhs ) : base(rhs) {}
521 // No-throw (assuming T::~T() doesn't)
524 #if !defined(BOOST_OPTIONAL_NO_INPLACE_FACTORY_SUPPORT) && !defined(BOOST_OPTIONAL_WEAK_OVERLOAD_RESOLUTION)
525 // Assigns from an expression. See corresponding constructor.
526 // Basic Guarantee: If the resolved T ctor throws, this is left UNINITIALIZED
528 optional& operator= ( Expr expr )
530 this->assign_expr(expr,&expr);
536 #ifndef BOOST_OPTIONAL_NO_CONVERTING_ASSIGNMENT
537 // Assigns from another convertible optional<U> (converts && deep-copies the rhs value)
538 // Requires a valid conversion from U to T.
539 // Basic Guarantee: If T::T( U const& ) throws, this is left UNINITIALIZED
541 optional& operator= ( optional<U> const& rhs )
548 // Assigns from another optional<T> (deep-copies the rhs value)
549 // Basic Guarantee: If T::T( T const& ) throws, this is left UNINITIALIZED
550 // (NOTE: On BCB, this operator is not actually called and left is left UNMODIFIED in case of a throw)
551 optional& operator= ( optional const& rhs )
553 this->assign( rhs ) ;
557 // Assigns from a T (deep-copies the rhs value)
558 // Basic Guarantee: If T::( T const& ) throws, this is left UNINITIALIZED
559 optional& operator= ( argument_type val )
561 this->assign( val ) ;
565 // Assigns from a "none"
566 // Which destroys the current value, if any, leaving this UNINITIALIZED
567 // No-throw (assuming T::~T() doesn't)
568 optional& operator= ( none_t none_ )
570 this->assign( none_ ) ;
574 // Returns a reference to the value if this is initialized, otherwise,
575 // the behaviour is UNDEFINED
577 reference_const_type get() const { BOOST_ASSERT(this->is_initialized()) ; return this->get_impl(); }
578 reference_type get() { BOOST_ASSERT(this->is_initialized()) ; return this->get_impl(); }
580 // Returns a copy of the value if this is initialized, 'v' otherwise
581 reference_const_type get_value_or ( reference_const_type v ) const { return this->is_initialized() ? get() : v ; }
582 reference_type get_value_or ( reference_type v ) { return this->is_initialized() ? get() : v ; }
584 // Returns a pointer to the value if this is initialized, otherwise,
585 // the behaviour is UNDEFINED
587 pointer_const_type operator->() const { BOOST_ASSERT(this->is_initialized()) ; return this->get_ptr_impl() ; }
588 pointer_type operator->() { BOOST_ASSERT(this->is_initialized()) ; return this->get_ptr_impl() ; }
590 // Returns a reference to the value if this is initialized, otherwise,
591 // the behaviour is UNDEFINED
593 reference_const_type operator *() const { return this->get() ; }
594 reference_type operator *() { return this->get() ; }
596 // implicit conversion to "bool"
598 operator unspecified_bool_type() const { return this->safe_bool() ; }
600 // This is provided for those compilers which don't like the conversion to bool
602 bool operator!() const { return !this->is_initialized() ; }
605 // Returns optional<T>(v)
608 optional<T> make_optional ( T const& v )
610 return optional<T>(v);
613 // Returns optional<T>(cond,v)
616 optional<T> make_optional ( bool cond, T const& v )
618 return optional<T>(cond,v);
621 // Returns a reference to the value if this is initialized, otherwise, the behaviour is UNDEFINED.
625 BOOST_DEDUCED_TYPENAME optional<T>::reference_const_type
626 get ( optional<T> const& opt )
633 BOOST_DEDUCED_TYPENAME optional<T>::reference_type
634 get ( optional<T>& opt )
639 // Returns a pointer to the value if this is initialized, otherwise, returns NULL.
643 BOOST_DEDUCED_TYPENAME optional<T>::pointer_const_type
644 get ( optional<T> const* opt )
646 return opt->get_ptr() ;
651 BOOST_DEDUCED_TYPENAME optional<T>::pointer_type
652 get ( optional<T>* opt )
654 return opt->get_ptr() ;
657 // Returns a reference to the value if this is initialized, otherwise, the behaviour is UNDEFINED.
661 BOOST_DEDUCED_TYPENAME optional<T>::reference_const_type
662 get_optional_value_or ( optional<T> const& opt, BOOST_DEDUCED_TYPENAME optional<T>::reference_const_type v )
664 return opt.get_value_or(v) ;
669 BOOST_DEDUCED_TYPENAME optional<T>::reference_type
670 get_optional_value_or ( optional<T>& opt, BOOST_DEDUCED_TYPENAME optional<T>::reference_type v )
672 return opt.get_value_or(v) ;
675 // Returns a pointer to the value if this is initialized, otherwise, returns NULL.
679 BOOST_DEDUCED_TYPENAME optional<T>::pointer_const_type
680 get_pointer ( optional<T> const& opt )
682 return opt.get_ptr() ;
687 BOOST_DEDUCED_TYPENAME optional<T>::pointer_type
688 get_pointer ( optional<T>& opt )
690 return opt.get_ptr() ;
693 // optional's relational operators ( ==, !=, <, >, <=, >= ) have deep-semantics (compare values).
694 // WARNING: This is UNLIKE pointers. Use equal_pointees()/less_pointess() in generic code instead.
698 // optional<T> vs optional<T> cases
703 bool operator == ( optional<T> const& x, optional<T> const& y )
704 { return equal_pointees(x,y); }
708 bool operator < ( optional<T> const& x, optional<T> const& y )
709 { return less_pointees(x,y); }
713 bool operator != ( optional<T> const& x, optional<T> const& y )
714 { return !( x == y ) ; }
718 bool operator > ( optional<T> const& x, optional<T> const& y )
723 bool operator <= ( optional<T> const& x, optional<T> const& y )
724 { return !( y < x ) ; }
728 bool operator >= ( optional<T> const& x, optional<T> const& y )
729 { return !( x < y ) ; }
733 // optional<T> vs T cases
737 bool operator == ( optional<T> const& x, T const& y )
738 { return equal_pointees(x, optional<T>(y)); }
742 bool operator < ( optional<T> const& x, T const& y )
743 { return less_pointees(x, optional<T>(y)); }
747 bool operator != ( optional<T> const& x, T const& y )
748 { return !( x == y ) ; }
752 bool operator > ( optional<T> const& x, T const& y )
757 bool operator <= ( optional<T> const& x, T const& y )
758 { return !( y < x ) ; }
762 bool operator >= ( optional<T> const& x, T const& y )
763 { return !( x < y ) ; }
766 // T vs optional<T> cases
771 bool operator == ( T const& x, optional<T> const& y )
772 { return equal_pointees( optional<T>(x), y ); }
776 bool operator < ( T const& x, optional<T> const& y )
777 { return less_pointees( optional<T>(x), y ); }
781 bool operator != ( T const& x, optional<T> const& y )
782 { return !( x == y ) ; }
786 bool operator > ( T const& x, optional<T> const& y )
791 bool operator <= ( T const& x, optional<T> const& y )
792 { return !( y < x ) ; }
796 bool operator >= ( T const& x, optional<T> const& y )
797 { return !( x < y ) ; }
801 // optional<T> vs none cases
806 bool operator == ( optional<T> const& x, none_t )
807 { return equal_pointees(x, optional<T>() ); }
811 bool operator < ( optional<T> const& x, none_t )
812 { return less_pointees(x,optional<T>() ); }
816 bool operator != ( optional<T> const& x, none_t y )
817 { return !( x == y ) ; }
821 bool operator > ( optional<T> const& x, none_t y )
826 bool operator <= ( optional<T> const& x, none_t y )
827 { return !( y < x ) ; }
831 bool operator >= ( optional<T> const& x, none_t y )
832 { return !( x < y ) ; }
835 // none vs optional<T> cases
840 bool operator == ( none_t x, optional<T> const& y )
841 { return equal_pointees(optional<T>() ,y); }
845 bool operator < ( none_t x, optional<T> const& y )
846 { return less_pointees(optional<T>() ,y); }
850 bool operator != ( none_t x, optional<T> const& y )
851 { return !( x == y ) ; }
855 bool operator > ( none_t x, optional<T> const& y )
860 bool operator <= ( none_t x, optional<T> const& y )
861 { return !( y < x ) ; }
865 bool operator >= ( none_t x, optional<T> const& y )
866 { return !( x < y ) ; }
869 // The following swap implementation follows the GCC workaround as found in
870 // "boost/detail/compressed_pair.hpp"
872 namespace optional_detail {
874 // GCC < 3.2 gets the using declaration at namespace scope (FLC, DWA)
875 #if BOOST_WORKAROUND(__GNUC__, < 3) \
876 || BOOST_WORKAROUND(__GNUC__, == 3) && __GNUC_MINOR__ <= 2
878 #define BOOST_OPTIONAL_STD_SWAP_INTRODUCED_AT_NS_SCOPE
882 // If both are initialized, calls swap(T&, T&). If this swap throws, both will remain initialized but their values are now unspecified.
883 // If only one is initialized, calls U.reset(*I), THEN I.reset().
884 // If U.reset(*I) throws, both are left UNCHANGED (U is kept uinitialized and I is never reset)
885 // If both are uninitialized, do nothing (no-throw)
888 void optional_swap ( optional<T>& x, optional<T>& y )
895 else if ( !!x && !y )
900 else if ( !!x && !!y )
902 // GCC > 3.2 and all other compilers have the using declaration at function scope (FLC)
903 #ifndef BOOST_OPTIONAL_STD_SWAP_INTRODUCED_AT_NS_SCOPE
904 // allow for Koenig lookup
911 } // namespace optional_detail
913 template<class T> inline void swap ( optional<T>& x, optional<T>& y )
915 optional_detail::optional_swap(x,y);