forked from boostorg/optional
The function returns false w/o using any parameter leading to a warning. Remove the name from the parameter
197 lines
4.2 KiB
C++
197 lines
4.2 KiB
C++
// Copyright (C) 2003, 2008 Fernando Luis Cacciola Carballal.
|
|
// Copyright (C) 2015, 2024 Andrzej Krzemienski.
|
|
//
|
|
// Use, modification, and distribution is subject to the Boost Software
|
|
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
|
// http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
// See http://www.boost.org/libs/optional for documentation.
|
|
//
|
|
// You are welcome to contact the author at:
|
|
// akrzemi1@gmail.com
|
|
|
|
#ifndef BOOST_OPTIONAL_DETAIL_OPTIONAL_RELOPS_AJK_03OCT2015_HPP
|
|
#define BOOST_OPTIONAL_DETAIL_OPTIONAL_RELOPS_AJK_03OCT2015_HPP
|
|
|
|
namespace boost {
|
|
|
|
// optional's relational operators ( ==, !=, <, >, <=, >= ) have deep-semantics (compare values).
|
|
// WARNING: This is UNLIKE pointers. Use equal_pointees()/less_pointees() in generic code instead,
|
|
// to obtain the same semantic for pointers.
|
|
|
|
|
|
//
|
|
// optional<T> vs optional<T> cases
|
|
//
|
|
|
|
template<class T>
|
|
inline
|
|
bool operator == ( optional<T> const& x, optional<T> const& y )
|
|
{ return bool(x) && bool(y) ? *x == *y : bool(x) == bool(y); }
|
|
|
|
template<class T>
|
|
inline
|
|
bool operator < ( optional<T> const& x, optional<T> const& y )
|
|
{ return !y ? false : (!x ? true : (*x) < (*y)); }
|
|
|
|
template<class T>
|
|
inline
|
|
bool operator != ( optional<T> const& x, optional<T> const& y )
|
|
{ return !( x == y ) ; }
|
|
|
|
template<class T>
|
|
inline
|
|
bool operator > ( optional<T> const& x, optional<T> const& y )
|
|
{ return y < x ; }
|
|
|
|
template<class T>
|
|
inline
|
|
bool operator <= ( optional<T> const& x, optional<T> const& y )
|
|
{ return !( y < x ) ; }
|
|
|
|
template<class T>
|
|
inline
|
|
bool operator >= ( optional<T> const& x, optional<T> const& y )
|
|
{ return !( x < y ) ; }
|
|
|
|
|
|
//
|
|
// optional<T> vs T cases
|
|
//
|
|
template<class T>
|
|
inline
|
|
bool operator == ( optional<T> const& x, T const& y )
|
|
{ return x && (*x == y); }
|
|
|
|
template<class T>
|
|
inline
|
|
bool operator < ( optional<T> const& x, T const& y )
|
|
{ return (!x) || (*x < y); }
|
|
|
|
template<class T>
|
|
inline
|
|
bool operator != ( optional<T> const& x, T const& y )
|
|
{ return !( x == y ) ; }
|
|
|
|
template<class T>
|
|
inline
|
|
bool operator > ( optional<T> const& x, T const& y )
|
|
{ return y < x ; }
|
|
|
|
template<class T>
|
|
inline
|
|
bool operator <= ( optional<T> const& x, T const& y )
|
|
{ return !( y < x ) ; }
|
|
|
|
template<class T>
|
|
inline
|
|
bool operator >= ( optional<T> const& x, T const& y )
|
|
{ return !( x < y ) ; }
|
|
|
|
//
|
|
// T vs optional<T> cases
|
|
//
|
|
|
|
template<class T>
|
|
inline
|
|
bool operator == ( T const& x, optional<T> const& y )
|
|
{ return y && (x == *y); }
|
|
|
|
template<class T>
|
|
inline
|
|
bool operator < ( T const& x, optional<T> const& y )
|
|
{ return y && (x < *y); }
|
|
|
|
template<class T>
|
|
inline
|
|
bool operator != ( T const& x, optional<T> const& y )
|
|
{ return !( x == y ) ; }
|
|
|
|
template<class T>
|
|
inline
|
|
bool operator > ( T const& x, optional<T> const& y )
|
|
{ return y < x ; }
|
|
|
|
template<class T>
|
|
inline
|
|
bool operator <= ( T const& x, optional<T> const& y )
|
|
{ return !( y < x ) ; }
|
|
|
|
template<class T>
|
|
inline
|
|
bool operator >= ( T const& x, optional<T> const& y )
|
|
{ return !( x < y ) ; }
|
|
|
|
|
|
//
|
|
// optional<T> vs none cases
|
|
//
|
|
|
|
template<class T>
|
|
inline
|
|
bool operator == ( optional<T> const& x, none_t ) BOOST_NOEXCEPT
|
|
{ return !x; }
|
|
|
|
template<class T>
|
|
inline
|
|
bool operator < ( optional<T> const&, none_t )
|
|
{ return false; }
|
|
|
|
template<class T>
|
|
inline
|
|
bool operator != ( optional<T> const& x, none_t ) BOOST_NOEXCEPT
|
|
{ return bool(x); }
|
|
|
|
template<class T>
|
|
inline
|
|
bool operator > ( optional<T> const& x, none_t y )
|
|
{ return y < x ; }
|
|
|
|
template<class T>
|
|
inline
|
|
bool operator <= ( optional<T> const& x, none_t y )
|
|
{ return !( y < x ) ; }
|
|
|
|
template<class T>
|
|
inline
|
|
bool operator >= ( optional<T> const& x, none_t y )
|
|
{ return !( x < y ) ; }
|
|
|
|
//
|
|
// none vs optional<T> cases
|
|
//
|
|
|
|
template<class T>
|
|
inline
|
|
bool operator == ( none_t , optional<T> const& y ) BOOST_NOEXCEPT
|
|
{ return !y; }
|
|
|
|
template<class T>
|
|
inline
|
|
bool operator < ( none_t , optional<T> const& y )
|
|
{ return bool(y); }
|
|
|
|
template<class T>
|
|
inline
|
|
bool operator != ( none_t, optional<T> const& y ) BOOST_NOEXCEPT
|
|
{ return bool(y); }
|
|
|
|
template<class T>
|
|
inline
|
|
bool operator > ( none_t x, optional<T> const& y )
|
|
{ return y < x ; }
|
|
|
|
template<class T>
|
|
inline
|
|
bool operator <= ( none_t x, optional<T> const& y )
|
|
{ return !( y < x ) ; }
|
|
|
|
template<class T>
|
|
inline
|
|
bool operator >= ( none_t x, optional<T> const& y )
|
|
{ return !( x < y ) ; }
|
|
|
|
} // namespace boost
|
|
|
|
#endif // header guard
|