blob: 87579b264296acb13311d04852a3bae7bd0f0b3e [file]
// -*- C++ -*-
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#ifndef _LIBCPP___ALGORITHM_RANGES_FOLD_H
#define _LIBCPP___ALGORITHM_RANGES_FOLD_H
#include <__algorithm/for_each.h>
#include <__concepts/assignable.h>
#include <__concepts/constructible.h>
#include <__concepts/convertible_to.h>
#include <__concepts/invocable.h>
#include <__concepts/movable.h>
#include <__config>
#include <__functional/identity.h>
#include <__functional/invoke.h>
#include <__functional/reference_wrapper.h>
#include <__iterator/concepts.h>
#include <__iterator/iterator_traits.h>
#include <__iterator/next.h>
#include <__iterator/prev.h>
#include <__iterator/reverse_iterator.h>
#include <__ranges/access.h>
#include <__ranges/concepts.h>
#include <__ranges/dangling.h>
#include <__type_traits/decay.h>
#include <__type_traits/invoke.h>
#include <__utility/forward.h>
#include <__utility/move.h>
#include <optional>
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
# pragma GCC system_header
#endif
_LIBCPP_PUSH_MACROS
#include <__undef_macros>
_LIBCPP_BEGIN_NAMESPACE_STD
#if _LIBCPP_STD_VER >= 23
namespace ranges {
template <class _Ip, class _Tp>
struct in_value_result {
_LIBCPP_NO_UNIQUE_ADDRESS _Ip in;
_LIBCPP_NO_UNIQUE_ADDRESS _Tp value;
template <class _I2, class _T2>
requires convertible_to<const _Ip&, _I2> && convertible_to<const _Tp&, _T2>
_LIBCPP_HIDE_FROM_ABI constexpr operator in_value_result<_I2, _T2>() const& {
return {in, value};
}
template <class _I2, class _T2>
requires convertible_to<_Ip, _I2> && convertible_to<_Tp, _T2>
_LIBCPP_HIDE_FROM_ABI constexpr operator in_value_result<_I2, _T2>() && {
return {std::move(in), std::move(value)};
}
};
template <class _Ip, class _Tp>
using fold_left_with_iter_result = in_value_result<_Ip, _Tp>;
template <class _Ip, class _Tp>
using fold_left_first_with_iter_result = in_value_result<_Ip, _Tp>;
template <class _Fp, class _Tp, class _Ip, class _Rp, class _Up = decay_t<_Rp>>
concept __indirectly_binary_left_foldable_impl =
convertible_to<_Rp, _Up> && //
movable<_Tp> && //
movable<_Up> && //
convertible_to<_Tp, _Up> && //
invocable<_Fp&, _Up, iter_reference_t<_Ip>> && //
assignable_from<_Up&, invoke_result_t<_Fp&, _Up, iter_reference_t<_Ip>>>;
template <class _Fp, class _Tp, class _Ip>
concept __indirectly_binary_left_foldable =
copy_constructible<_Fp> && //
invocable<_Fp&, _Tp, iter_reference_t<_Ip>> && //
__indirectly_binary_left_foldable_impl<_Fp, _Tp, _Ip, invoke_result_t<_Fp&, _Tp, iter_reference_t<_Ip>>>;
template <class _Func>
struct __flipped {
_Func __func;
template <class _Tp, class _Up>
requires invocable<_Func&, _Up, _Tp>
invoke_result_t<_Func&, _Up, _Tp> operator()(_Tp&&, _Up&&);
};
template <class _Func, class _Tp, class _Iter>
concept __indirectly_binary_right_foldable =
__indirectly_binary_left_foldable_impl<__flipped<_Func>,
_Tp,
_Iter,
invoke_result_t<_Func&, _Tp, iter_reference_t<_Iter>>>;
struct __fold_left_with_iter {
template <input_iterator _Ip, sentinel_for<_Ip> _Sp, class _Tp, __indirectly_binary_left_foldable<_Tp, _Ip> _Fp>
[[nodiscard]] _LIBCPP_HIDE_FROM_ABI static constexpr auto operator()(_Ip __first, _Sp __last, _Tp __init, _Fp __f) {
using _Up = decay_t<invoke_result_t<_Fp&, _Tp, iter_reference_t<_Ip>>>;
if (__first == __last) {
return fold_left_with_iter_result<_Ip, _Up>{std::move(__first), _Up(std::move(__init))};
}
_Up __result = std::invoke(__f, std::move(__init), *__first);
++__first;
__identity __proj;
auto __end = std::__for_each(
std::move(__first),
std::move(__last),
[&](auto&& __element) {
__result = std::invoke(__f, std::move(__result), std::forward<decltype(__element)>(__element));
},
__proj);
return fold_left_with_iter_result<_Ip, _Up>{std::move(__end), std::move(__result)};
}
template <input_range _Rp, class _Tp, __indirectly_binary_left_foldable<_Tp, iterator_t<_Rp>> _Fp>
[[nodiscard]] _LIBCPP_HIDE_FROM_ABI static constexpr auto operator()(_Rp&& __r, _Tp __init, _Fp __f) {
auto __result = operator()(ranges::begin(__r), ranges::end(__r), std::move(__init), std::ref(__f));
using _Up = decay_t<invoke_result_t<_Fp&, _Tp, range_reference_t<_Rp>>>;
return fold_left_with_iter_result<borrowed_iterator_t<_Rp>, _Up>{std::move(__result.in), std::move(__result.value)};
}
};
inline constexpr auto fold_left_with_iter = __fold_left_with_iter();
struct __fold_left {
template <input_iterator _Ip, sentinel_for<_Ip> _Sp, class _Tp, __indirectly_binary_left_foldable<_Tp, _Ip> _Fp>
[[nodiscard]] _LIBCPP_HIDE_FROM_ABI static constexpr auto operator()(_Ip __first, _Sp __last, _Tp __init, _Fp __f) {
return fold_left_with_iter(std::move(__first), std::move(__last), std::move(__init), std::ref(__f)).value;
}
template <input_range _Rp, class _Tp, __indirectly_binary_left_foldable<_Tp, iterator_t<_Rp>> _Fp>
[[nodiscard]] _LIBCPP_HIDE_FROM_ABI static constexpr auto operator()(_Rp&& __r, _Tp __init, _Fp __f) {
return fold_left_with_iter(ranges::begin(__r), ranges::end(__r), std::move(__init), std::ref(__f)).value;
}
};
inline constexpr auto fold_left = __fold_left();
struct __fold_left_first_with_iter {
template <input_iterator _Iter,
sentinel_for<_Iter> _Sent,
__indirectly_binary_left_foldable<iter_value_t<_Iter>, _Iter> _Func>
requires constructible_from<iter_value_t<_Iter>, iter_reference_t<_Iter>>
[[nodiscard]] _LIBCPP_HIDE_FROM_ABI static constexpr auto operator()(_Iter __first, _Sent __last, _Func __func) {
using _Up = decltype(fold_left(std::move(__first), __last, iter_value_t<_Iter>(*__first), __func));
if (__first == __last)
return fold_left_first_with_iter_result<_Iter, optional<_Up>>{std::move(__first), optional<_Up>()};
_Up __result(*__first);
++__first;
__identity __proj;
auto __end = std::__for_each(
std::move(__first),
std::move(__last),
[&](auto&& __element) {
__result = std::invoke(__func, std::move(__result), std::forward<decltype(__element)>(__element));
},
__proj);
return fold_left_first_with_iter_result<_Iter, optional<_Up>>{std::move(__end), optional<_Up>(std::move(__result))};
}
template <input_range _Range, __indirectly_binary_left_foldable<range_value_t<_Range>, iterator_t<_Range>> _Func>
requires constructible_from<range_value_t<_Range>, range_reference_t<_Range>>
[[nodiscard]] _LIBCPP_HIDE_FROM_ABI static constexpr auto operator()(_Range&& __range, _Func __func) {
auto __result = operator()(ranges::begin(__range), ranges::end(__range), std::ref(__func));
using _Up = decltype(fold_left(
ranges::begin(__range), ranges::end(__range), range_value_t<_Range>(*ranges::begin(__range)), __func));
return fold_left_first_with_iter_result<borrowed_iterator_t<_Range>, optional<_Up>>{
std::move(__result.in), std::move(__result.value)};
}
};
inline constexpr auto fold_left_first_with_iter = __fold_left_first_with_iter();
struct __fold_left_first {
template <input_iterator _Iter,
sentinel_for<_Iter> _Sent,
__indirectly_binary_left_foldable<iter_value_t<_Iter>, _Iter> _Func>
requires constructible_from<iter_value_t<_Iter>, iter_reference_t<_Iter>>
[[nodiscard]] _LIBCPP_HIDE_FROM_ABI static constexpr auto operator()(_Iter __first, _Sent __last, _Func __func) {
return fold_left_first_with_iter(std::move(__first), std::move(__last), std::ref(__func)).value;
}
template <input_range _Range, __indirectly_binary_left_foldable<range_value_t<_Range>, iterator_t<_Range>> _Func>
requires constructible_from<range_value_t<_Range>, range_reference_t<_Range>>
[[nodiscard]] _LIBCPP_HIDE_FROM_ABI static constexpr auto operator()(_Range&& __range, _Func __func) {
return fold_left_first_with_iter(ranges::begin(__range), ranges::end(__range), std::ref(__func)).value;
}
};
inline constexpr auto fold_left_first = __fold_left_first();
struct __fold_right {
template <bidirectional_iterator _Iter,
sentinel_for<_Iter> _Sp,
class _Tp,
__indirectly_binary_right_foldable<_Tp, _Iter> _Func>
[[nodiscard]] _LIBCPP_HIDE_FROM_ABI static constexpr auto
operator()(_Iter __first, _Sp __last, _Tp __init, _Func __func) {
using _Up = decay_t<invoke_result_t<_Func&, iter_reference_t<_Iter>, _Tp>>;
if (__first == __last)
return _Up(std::move(__init));
_Iter __tail = ranges::next(__first, __last);
--__tail;
_Up __result = std::invoke(__func, *__tail, std::move(__init));
std::for_each(std::make_reverse_iterator(__tail), std::make_reverse_iterator(__first), [&](auto&& __element) {
__result = std::invoke(__func, std::forward<decltype(__element)>(__element), std::move(__result));
});
return __result;
}
template <bidirectional_range _Range, class _Tp, __indirectly_binary_right_foldable<_Tp, iterator_t<_Range>> _Func>
[[nodiscard]] _LIBCPP_HIDE_FROM_ABI static constexpr auto operator()(_Range&& __range, _Tp __init, _Func __func) {
return operator()(ranges::begin(__range), ranges::end(__range), std::move(__init), std::ref(__func));
}
};
inline constexpr auto fold_right = __fold_right();
struct __fold_right_last {
template <bidirectional_iterator _Iter,
sentinel_for<_Iter> _Sp,
__indirectly_binary_right_foldable<iter_value_t<_Iter>, _Iter> _Func>
[[nodiscard]] _LIBCPP_HIDE_FROM_ABI static constexpr auto operator()(_Iter __first, _Sp __last, _Func __func) {
using _Up = decltype(fold_right(__first, __last, iter_value_t<_Iter>(*__first), __func));
if (__first == __last)
return optional<_Up>();
_Iter __tail = ranges::prev(ranges::next(__first, __last));
return optional<_Up>(
in_place, ranges::fold_right(std::move(__first), __tail, iter_value_t<_Iter>(*__tail), std::move(__func)));
}
template <bidirectional_range _Range,
__indirectly_binary_right_foldable<range_value_t<_Range>, iterator_t<_Range>> _Func>
[[nodiscard]] _LIBCPP_HIDE_FROM_ABI static constexpr auto operator()(_Range&& __range, _Func __func) {
return operator()(ranges::begin(__range), ranges::end(__range), std::ref(__func));
}
};
inline constexpr auto fold_right_last = __fold_right_last();
} // namespace ranges
#endif // _LIBCPP_STD_VER >= 23
_LIBCPP_END_NAMESPACE_STD
_LIBCPP_POP_MACROS
#endif // _LIBCPP___ALGORITHM_RANGES_FOLD_H