Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / libcxx / include / __functional / identity.h
blob5dffedf677f9ba55c6bedd7e68ef1e7a6d7eeb9c
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 //===----------------------------------------------------------------------===//
10 #ifndef _LIBCPP___FUNCTIONAL_IDENTITY_H
11 #define _LIBCPP___FUNCTIONAL_IDENTITY_H
13 #include <__config>
14 #include <__type_traits/integral_constant.h>
15 #include <__utility/forward.h>
17 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
18 # pragma GCC system_header
19 #endif
21 _LIBCPP_BEGIN_NAMESPACE_STD
23 template <class _Tp>
24 struct __is_identity : false_type {};
26 struct __identity {
27 template <class _Tp>
28 _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR _Tp&& operator()(_Tp&& __t) const _NOEXCEPT {
29 return std::forward<_Tp>(__t);
32 using is_transparent = void;
35 template <>
36 struct __is_identity<__identity> : true_type {};
38 #if _LIBCPP_STD_VER >= 20
40 struct identity {
41 template<class _Tp>
42 _LIBCPP_NODISCARD_EXT _LIBCPP_HIDE_FROM_ABI constexpr _Tp&& operator()(_Tp&& __t) const noexcept
44 return _VSTD::forward<_Tp>(__t);
47 using is_transparent = void;
50 template <>
51 struct __is_identity<identity> : true_type {};
53 #endif // _LIBCPP_STD_VER >= 20
55 _LIBCPP_END_NAMESPACE_STD
57 #endif // _LIBCPP___FUNCTIONAL_IDENTITY_H