📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-01 00:21:53
📂
/ (Root)
/
opt
/
cpanel
/
ea-ruby27
/
src
/
passenger-release-6.1.5
/
src
/
cxx_supportlib
/
vendor-modified
/
boost
/
bind
📍 /opt/cpanel/ea-ruby27/src/passenger-release-6.1.5/src/cxx_supportlib/vendor-modified/boost/bind
🔄 Refresh
✏️
Editing: apply.hpp
Read Only
#ifndef BOOST_BIND_APPLY_HPP_INCLUDED #define BOOST_BIND_APPLY_HPP_INCLUDED // // apply.hpp // // Copyright 2002, 2003, 2024 Peter Dimov // // 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) // namespace boost { template<class R> struct apply { typedef R result_type; template<class F, class... A> result_type operator()( F&& f, A&&... a ) const { return static_cast<F&&>( f )( static_cast<A&&>( a )... ); } }; } // namespace boost #endif // #ifndef BOOST_BIND_APPLY_HPP_INCLUDED
💾 Save Changes
❌ Cancel