// Copyright (c) 2016-2021 Antony Polukhin // // Distributed under 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) #ifndef BOOST_PFR_FUNCTORS_HPP #define BOOST_PFR_FUNCTORS_HPP #pragma once #include #include #include /// \file boost/pfr/functors.hpp /// Contains functors that are close to the Standard Library ones. /// Each functor calls corresponding Boost.PFR function from boost/pfr/ops.hpp /// /// \b Example: /// \code /// #include /// struct my_struct { // No operators defined for that structure /// int i; short s; char data[7]; bool bl; int a,b,c,d,e,f; /// }; /// // ... /// /// std::unordered_set< /// my_struct, /// boost::pfr::hash<>, /// boost::pfr::equal_to<> /// > my_set; /// \endcode /// /// \b Synopsis: namespace boost { namespace pfr { ///////////////////// Comparisons /// \brief std::equal_to like comparator that returns \forcedlink{eq}(x, y) template struct equal_to { /// \return \b true if each field of \b x equals the field with same index of \b y. bool operator()(const T& x, const T& y) const { return boost::pfr::eq(x, y); } #ifdef BOOST_PFR_DOXYGEN_INVOKED /// This typedef exists only if T \b is void typedef std::true_type is_transparent; /// This operator allows comparison of \b x and \b y that have different type. /// \pre Exists only if T \b is void. template bool operator()(const V& x, const U& y) const; #endif }; /// @cond template <> struct equal_to { template bool operator()(const T& x, const U& y) const { return boost::pfr::eq(x, y); } typedef std::true_type is_transparent; }; /// @endcond /// \brief std::not_equal like comparator that returns \forcedlink{ne}(x, y) template struct not_equal { /// \return \b true if at least one field \b x not equals the field with same index of \b y. bool operator()(const T& x, const T& y) const { return boost::pfr::ne(x, y); } #ifdef BOOST_PFR_DOXYGEN_INVOKED /// This typedef exists only if T \b is void typedef std::true_type is_transparent; /// This operator allows comparison of \b x and \b y that have different type. /// \pre Exists only if T \b is void. template bool operator()(const V& x, const U& y) const; #endif }; /// @cond template <> struct not_equal { template bool operator()(const T& x, const U& y) const { return boost::pfr::ne(x, y); } typedef std::true_type is_transparent; }; /// @endcond /// \brief std::greater like comparator that returns \forcedlink{gt}(x, y) template struct greater { /// \return \b true if field of \b x greater than the field with same index of \b y and all previous fields of \b x equal to the same fields of \b y. bool operator()(const T& x, const T& y) const { return boost::pfr::gt(x, y); } #ifdef BOOST_PFR_DOXYGEN_INVOKED /// This typedef exists only if T \b is void typedef std::true_type is_transparent; /// This operator allows comparison of \b x and \b y that have different type. /// \pre Exists only if T \b is void. template bool operator()(const V& x, const U& y) const; #endif }; /// @cond template <> struct greater { template bool operator()(const T& x, const U& y) const { return boost::pfr::gt(x, y); } typedef std::true_type is_transparent; }; /// @endcond /// \brief std::less like comparator that returns \forcedlink{lt}(x, y) template struct less { /// \return \b true if field of \b x less than the field with same index of \b y and all previous fields of \b x equal to the same fields of \b y. bool operator()(const T& x, const T& y) const { return boost::pfr::lt(x, y); } #ifdef BOOST_PFR_DOXYGEN_INVOKED /// This typedef exists only if T \b is void typedef std::true_type is_transparent; /// This operator allows comparison of \b x and \b y that have different type. /// \pre Exists only if T \b is void. template bool operator()(const V& x, const U& y) const; #endif }; /// @cond template <> struct less { template bool operator()(const T& x, const U& y) const { return boost::pfr::lt(x, y); } typedef std::true_type is_transparent; }; /// @endcond /// \brief std::greater_equal like comparator that returns \forcedlink{ge}(x, y) template struct greater_equal { /// \return \b true if field of \b x greater than the field with same index of \b y and all previous fields of \b x equal to the same fields of \b y; /// or if each field of \b x equals the field with same index of \b y. bool operator()(const T& x, const T& y) const { return boost::pfr::ge(x, y); } #ifdef BOOST_PFR_DOXYGEN_INVOKED /// This typedef exists only if T \b is void typedef std::true_type is_transparent; /// This operator allows comparison of \b x and \b y that have different type. /// \pre Exists only if T \b is void. template bool operator()(const V& x, const U& y) const; #endif }; /// @cond template <> struct greater_equal { template bool operator()(const T& x, const U& y) const { return boost::pfr::ge(x, y); } typedef std::true_type is_transparent; }; /// @endcond /// \brief std::less_equal like comparator that returns \forcedlink{le}(x, y) template struct less_equal { /// \return \b true if field of \b x less than the field with same index of \b y and all previous fields of \b x equal to the same fields of \b y; /// or if each field of \b x equals the field with same index of \b y. bool operator()(const T& x, const T& y) const { return boost::pfr::le(x, y); } #ifdef BOOST_PFR_DOXYGEN_INVOKED /// This typedef exists only if T \b is void typedef std::true_type is_transparent; /// This operator allows comparison of \b x and \b y that have different type. /// \pre Exists only if T \b is void. template bool operator()(const V& x, const U& y) const; #endif }; /// @cond template <> struct less_equal { template bool operator()(const T& x, const U& y) const { return boost::pfr::le(x, y); } typedef std::true_type is_transparent; }; /// @endcond /// \brief std::hash like functor that returns \forcedlink{hash_value}(x) template struct hash { /// \return hash value of \b x. std::size_t operator()(const T& x) const { return boost::pfr::hash_value(x); } }; }} // namespace boost::pfr #endif // BOOST_PFR_FUNCTORS_HPP