forward_like.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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___UTILITY_FORWARD_LIKE_H
  10. #define _LIBCPP___UTILITY_FORWARD_LIKE_H
  11. #include <__config>
  12. #include <__type_traits/conditional.h>
  13. #include <__type_traits/is_const.h>
  14. #include <__type_traits/is_reference.h>
  15. #include <__type_traits/remove_reference.h>
  16. #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
  17. # pragma GCC system_header
  18. #endif
  19. _LIBCPP_BEGIN_NAMESPACE_STD
  20. #if _LIBCPP_STD_VER > 20
  21. template <class _Ap, class _Bp>
  22. using _CopyConst = _If<is_const_v<_Ap>, const _Bp, _Bp>;
  23. template <class _Ap, class _Bp>
  24. using _OverrideRef = _If<is_rvalue_reference_v<_Ap>, remove_reference_t<_Bp>&&, _Bp&>;
  25. template <class _Ap, class _Bp>
  26. using _ForwardLike = _OverrideRef<_Ap&&, _CopyConst<remove_reference_t<_Ap>, remove_reference_t<_Bp>>>;
  27. template <class _Tp, class _Up>
  28. [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr auto forward_like(_LIBCPP_LIFETIMEBOUND _Up&& __ux) noexcept
  29. -> _ForwardLike<_Tp, _Up> {
  30. return static_cast<_ForwardLike<_Tp, _Up>>(__ux);
  31. }
  32. #endif // _LIBCPP_STD_VER > 20
  33. _LIBCPP_END_NAMESPACE_STD
  34. #endif // _LIBCPP___UTILITY_FORWARD_LIKE_H