binder2nd.h 1.8 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_BINDER2ND_H
  10. #define _LIBCPP___FUNCTIONAL_BINDER2ND_H
  11. #include <__config>
  12. #include <__functional/unary_function.h>
  13. #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
  14. # pragma GCC system_header
  15. #endif
  16. _LIBCPP_BEGIN_NAMESPACE_STD
  17. #if _LIBCPP_STD_VER <= 14 || defined(_LIBCPP_ENABLE_CXX17_REMOVED_BINDERS)
  18. template <class _Operation>
  19. class _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX11 binder2nd
  20. : public __unary_function<typename _Operation::first_argument_type, typename _Operation::result_type> {
  21. protected:
  22. _Operation op;
  23. typename _Operation::second_argument_type value;
  24. public:
  25. _LIBCPP_HIDE_FROM_ABI binder2nd(const _Operation& __x, const typename _Operation::second_argument_type __y)
  26. : op(__x), value(__y) {}
  27. _LIBCPP_HIDE_FROM_ABI typename _Operation::result_type
  28. operator()(typename _Operation::first_argument_type& __x) const {
  29. return op(__x, value);
  30. }
  31. _LIBCPP_HIDE_FROM_ABI typename _Operation::result_type
  32. operator()(const typename _Operation::first_argument_type& __x) const {
  33. return op(__x, value);
  34. }
  35. };
  36. template <class _Operation, class _Tp>
  37. _LIBCPP_DEPRECATED_IN_CXX11 inline _LIBCPP_HIDE_FROM_ABI binder2nd<_Operation>
  38. bind2nd(const _Operation& __op, const _Tp& __x) {
  39. return binder2nd<_Operation>(__op, __x);
  40. }
  41. #endif // _LIBCPP_STD_VER <= 14 || defined(_LIBCPP_ENABLE_CXX17_REMOVED_BINDERS)
  42. _LIBCPP_END_NAMESPACE_STD
  43. #endif // _LIBCPP___FUNCTIONAL_BINDER2ND_H