[rtsan] Remove mkfifoat interceptor (#116997)
[llvm-project.git] / libcxx / include / __cxx03 / __algorithm / ranges_replace_copy_if.h
blob88e5ff71c58c5033870a26b9c30060ed4b371613
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef _LIBCPP___ALGORITHM_RANGES_REPLACE_COPY_IF_H
10 #define _LIBCPP___ALGORITHM_RANGES_REPLACE_COPY_IF_H
12 #include <__cxx03/__algorithm/in_out_result.h>
13 #include <__cxx03/__config>
14 #include <__cxx03/__functional/identity.h>
15 #include <__cxx03/__functional/invoke.h>
16 #include <__cxx03/__iterator/concepts.h>
17 #include <__cxx03/__iterator/projected.h>
18 #include <__cxx03/__ranges/access.h>
19 #include <__cxx03/__ranges/concepts.h>
20 #include <__cxx03/__ranges/dangling.h>
21 #include <__cxx03/__utility/move.h>
23 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
24 # pragma GCC system_header
25 #endif
27 _LIBCPP_PUSH_MACROS
28 #include <__cxx03/__undef_macros>
30 #if _LIBCPP_STD_VER >= 20
32 _LIBCPP_BEGIN_NAMESPACE_STD
34 namespace ranges {
36 template <class _InIter, class _OutIter>
37 using replace_copy_if_result = in_out_result<_InIter, _OutIter>;
39 template <class _InIter, class _Sent, class _OutIter, class _Pred, class _Type, class _Proj>
40 _LIBCPP_HIDE_FROM_ABI constexpr replace_copy_if_result<_InIter, _OutIter> __replace_copy_if_impl(
41 _InIter __first, _Sent __last, _OutIter __result, _Pred& __pred, const _Type& __new_value, _Proj& __proj) {
42 while (__first != __last) {
43 if (std::invoke(__pred, std::invoke(__proj, *__first)))
44 *__result = __new_value;
45 else
46 *__result = *__first;
48 ++__first;
49 ++__result;
52 return {std::move(__first), std::move(__result)};
55 namespace __replace_copy_if {
57 struct __fn {
58 template <input_iterator _InIter,
59 sentinel_for<_InIter> _Sent,
60 class _Type,
61 output_iterator<const _Type&> _OutIter,
62 class _Proj = identity,
63 indirect_unary_predicate<projected<_InIter, _Proj>> _Pred>
64 requires indirectly_copyable<_InIter, _OutIter>
65 _LIBCPP_HIDE_FROM_ABI constexpr replace_copy_if_result<_InIter, _OutIter> operator()(
66 _InIter __first, _Sent __last, _OutIter __result, _Pred __pred, const _Type& __new_value, _Proj __proj = {})
67 const {
68 return ranges::__replace_copy_if_impl(
69 std::move(__first), std::move(__last), std::move(__result), __pred, __new_value, __proj);
72 template <input_range _Range,
73 class _Type,
74 output_iterator<const _Type&> _OutIter,
75 class _Proj = identity,
76 indirect_unary_predicate<projected<iterator_t<_Range>, _Proj>> _Pred>
77 requires indirectly_copyable<iterator_t<_Range>, _OutIter>
78 _LIBCPP_HIDE_FROM_ABI constexpr replace_copy_if_result<borrowed_iterator_t<_Range>, _OutIter>
79 operator()(_Range&& __range, _OutIter __result, _Pred __pred, const _Type& __new_value, _Proj __proj = {}) const {
80 return ranges::__replace_copy_if_impl(
81 ranges::begin(__range), ranges::end(__range), std::move(__result), __pred, __new_value, __proj);
85 } // namespace __replace_copy_if
87 inline namespace __cpo {
88 inline constexpr auto replace_copy_if = __replace_copy_if::__fn{};
89 } // namespace __cpo
90 } // namespace ranges
92 _LIBCPP_END_NAMESPACE_STD
94 #endif // _LIBCPP_STD_VER >= 20
96 _LIBCPP_POP_MACROS
98 #endif // _LIBCPP___ALGORITHM_RANGES_REPLACE_COPY_IF_H