mem_fn.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. // -*- C++ -*-
  2. //===----------------------------------------------------------------------===//
  3. //
  4. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  5. // See https://llvm.org/LICENSE.txt for license information.
  6. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  7. //
  8. //===----------------------------------------------------------------------===//
  9. #ifndef _LIBCPP___FUNCTIONAL_MEM_FN_H
  10. #define _LIBCPP___FUNCTIONAL_MEM_FN_H
  11. #include <__config>
  12. #include <__functional/binary_function.h>
  13. #include <__functional/invoke.h>
  14. #include <__functional/weak_result_type.h>
  15. #include <__utility/forward.h>
  16. #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
  17. # pragma GCC system_header
  18. #endif
  19. _LIBCPP_BEGIN_NAMESPACE_STD
  20. template <class _Tp>
  21. class __mem_fn : public __weak_result_type<_Tp> {
  22. public:
  23. // types
  24. typedef _Tp type;
  25. private:
  26. type __f_;
  27. public:
  28. _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 __mem_fn(type __f) _NOEXCEPT : __f_(__f) {}
  29. // invoke
  30. template <class... _ArgTypes>
  31. _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20
  32. typename __invoke_return<type, _ArgTypes...>::type
  33. operator()(_ArgTypes&&... __args) const {
  34. return std::__invoke(__f_, std::forward<_ArgTypes>(__args)...);
  35. }
  36. };
  37. template <class _Rp, class _Tp>
  38. inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 __mem_fn<_Rp _Tp::*> mem_fn(_Rp _Tp::*__pm) _NOEXCEPT {
  39. return __mem_fn<_Rp _Tp::*>(__pm);
  40. }
  41. _LIBCPP_END_NAMESPACE_STD
  42. #endif // _LIBCPP___FUNCTIONAL_MEM_FN_H