#ifndef BOOST_BIND_MEM_FN_HPP_INCLUDED #define BOOST_BIND_MEM_FN_HPP_INCLUDED // MS compatible compilers support #pragma once #if defined(_MSC_VER) && (_MSC_VER >= 1020) # pragma once #endif // // mem_fn.hpp - a generalization of std::mem_fun[_ref] // // Copyright 2001-2005, 2024 Peter Dimov // Copyright 2001 David Abrahams // // 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) // // See http://www.boost.org/libs/bind/mem_fn.html for documentation. // #include #include #include #include namespace boost { namespace _mfi { template struct remove_cvref: std::remove_cv< typename std::remove_reference::type > { }; template class mf { public: typedef R result_type; private: Pm pm_; public: mf( Pm pm ): pm_( pm ) {} template::type, class En = typename std::enable_if< std::is_same::value || std::is_base_of::value >::type > R operator()( U&& u, A... a ) const { return (std::forward( u ).*pm_)( std::forward( a )... ); } template::type, class E1 = void, class En = typename std::enable_if< !(std::is_same::value || std::is_base_of::value) >::type > R operator()( U&& u, A... a ) const { return (get_pointer( std::forward( u ) )->*pm_)( std::forward( a )... ); } bool operator==( mf const & rhs ) const { return pm_ == rhs.pm_; } bool operator!=( mf const & rhs ) const { return pm_ != rhs.pm_; } }; } // namespace _mfi // template auto mem_fn( R (T::*pmf) (A...) ) -> _mfi::mf { return pmf; } template auto mem_fn( R (T::*pmf) (A...) const ) -> _mfi::mf { return pmf; } #if defined( __cpp_noexcept_function_type ) || defined( _NOEXCEPT_TYPES_SUPPORTED ) template auto mem_fn( R (T::*pmf) (A...) noexcept ) -> _mfi::mf { return pmf; } template auto mem_fn( R (T::*pmf) (A...) const noexcept ) -> _mfi::mf { return pmf; } #endif // #if defined( __cpp_noexcept_function_type ) || defined( _NOEXCEPT_TYPES_SUPPORTED ) #if defined(BOOST_MEM_FN_ENABLE_CDECL) && !defined(_M_X64) template auto mem_fn( R (__cdecl T::*pmf) (A...) ) -> _mfi::mf { return pmf; } template auto mem_fn( R (__cdecl T::*pmf) (A...) const ) -> _mfi::mf { return pmf; } #endif // #if defined(BOOST_MEM_FN_ENABLE_CDECL) && !defined(_M_X64) #if defined(BOOST_MEM_FN_ENABLE_STDCALL) && !defined(_M_X64) template auto mem_fn( R (__stdcall T::*pmf) (A...) ) -> _mfi::mf { return pmf; } template auto mem_fn( R (__stdcall T::*pmf) (A...) const ) -> _mfi::mf { return pmf; } #endif // #if defined(BOOST_MEM_FN_ENABLE_STDCALL) && !defined(_M_X64) #if defined(BOOST_MEM_FN_ENABLE_FASTCALL) && !defined(_M_X64) template auto mem_fn( R (__fastcall T::*pmf) (A...) ) -> _mfi::mf { return pmf; } template auto mem_fn( R (__fastcall T::*pmf) (A...) const ) -> _mfi::mf { return pmf; } #endif // #if defined(BOOST_MEM_FN_ENABLE_FASTCALL) && !defined(_M_X64) // data member support namespace _mfi { template class dm { public: typedef R const & result_type; typedef T const * argument_type; private: typedef R (T::*Pm); Pm pm_; public: dm( Pm pm ): pm_( pm ) {} template::type, class En = typename std::enable_if< std::is_same::value || std::is_base_of::value >::type > auto operator()( U&& u ) const -> decltype( std::forward( u ).*pm_ ) { return std::forward( u ).*pm_; } template::type, class E1 = void, class En = typename std::enable_if< !(std::is_same::value || std::is_base_of::value) >::type > auto operator()( U&& u ) const -> decltype( get_pointer( std::forward( u ) )->*pm_ ) { return get_pointer( std::forward( u ) )->*pm_; } #if BOOST_WORKAROUND(BOOST_MSVC, < 1910) template R& operator()( U* u ) const { return u->*pm_; } template R const& operator()( U const* u ) const { return u->*pm_; } #endif bool operator==( dm const & rhs ) const { return pm_ == rhs.pm_; } bool operator!=( dm const & rhs ) const { return pm_ != rhs.pm_; } }; } // namespace _mfi template::value >::type > _mfi::dm mem_fn( R T::*pm ) { return pm; } } // namespace boost #endif // #ifndef BOOST_BIND_MEM_FN_HPP_INCLUDED