17#ifndef LLVM_ADT_STLEXTRAS_H
18#define LLVM_ADT_STLEXTRAS_H
26#include "llvm/Config/abi-breaking.h"
34#include <initializer_list>
44#ifdef EXPENSIVE_CHECKS
55 using type = std::add_pointer_t<std::add_const_t<T>>;
59 using type = std::add_lvalue_reference_t<std::add_const_t<T>>;
66template <typename T, bool isClass = std::is_class<T>::value>
70template <
typename ClassType,
typename ReturnType,
typename... Args>
79 template <
size_t Index>
80 using arg_t = std::tuple_element_t<Index, std::tuple<Args...>>;
83template <
typename ClassType,
typename ReturnType,
typename... Args>
87template <
typename ReturnType,
typename... Args>
97 using arg_t = std::tuple_element_t<i, std::tuple<Args...>>;
99template <
typename ReturnType,
typename... Args>
103template <
typename ReturnType,
typename... Args>
109template <
typename T,
typename... Ts>
110using is_one_of = std::disjunction<std::is_same<T, Ts>...>;
114template <
typename T,
typename... Ts>
126template <
typename T,
typename... Us>
128 : std::conjunction<std::negation<is_one_of<T, Us...>>,
129 TypesAreDistinct<Us...>> {};
142template <
typename T,
typename U,
typename... Us>
144 : std::integral_constant<size_t, 1 + FirstIndexOfType<T, Us...>::value> {};
145template <
typename T,
typename... Us>
151template <
size_t I,
typename... Ts>
156template <
typename EnumTy1,
typename EnumTy2,
157 typename UT1 = std::enable_if_t<std::is_enum<EnumTy1>::value,
158 std::underlying_type_t<EnumTy1>>,
159 typename UT2 = std::enable_if_t<std::is_enum<EnumTy2>::value,
160 std::underlying_type_t<EnumTy2>>>
162 return static_cast<UT1
>(
LHS) +
static_cast<UT2
>(
RHS);
182 bool = std::is_function_v<std::remove_pointer_t<remove_cvref_t<T>>>>
184 using value_type = std::remove_reference_t<T>;
185 using reference = value_type &;
186 using const_reference = value_type
const &;
188 std::optional<value_type> Obj;
190 static_assert(!std::is_pointer_v<value_type>,
191 "Pointers to non-functions are not callable.");
203 Obj.emplace(*
Other.Obj);
210 Obj.emplace(std::move(*
Other.Obj));
214 template <
typename... Pn,
215 std::enable_if_t<std::is_invocable_v<
T, Pn...>,
int> = 0>
216 decltype(
auto)
operator()(Pn &&...Params) {
217 return (*Obj)(std::forward<Pn>(Params)...);
220 template <
typename... Pn,
221 std::enable_if_t<std::is_invocable_v<
T const, Pn...>,
int> = 0>
222 decltype(
auto)
operator()(Pn &&...Params)
const {
223 return (*Obj)(std::forward<Pn>(Params)...);
226 bool valid()
const {
return Obj != std::nullopt; }
227 bool reset() {
return Obj = std::nullopt; }
229 operator reference() {
return *Obj; }
230 operator const_reference()
const {
return *Obj; }
236 static constexpr bool IsPtr = std::is_pointer_v<remove_cvref_t<T>>;
238 using StorageT = std::conditional_t<IsPtr, T, std::remove_reference_t<T> *>;
239 using CastT = std::conditional_t<IsPtr, T, T &>;
242 StorageT Func =
nullptr;
245 template <
typename In>
static constexpr auto convertIn(In &&
I) {
246 if constexpr (IsPtr) {
265 !std::is_same_v<remove_cvref_t<FnPtrOrRef>,
Callable>,
int
270 template <
typename... Pn,
271 std::enable_if_t<std::is_invocable_v<
T, Pn...>,
int> = 0>
273 return Func(std::forward<Pn>(Params)...);
276 bool valid()
const {
return Func !=
nullptr; }
279 operator T const &()
const {
280 if constexpr (IsPtr) {
284 static_assert(std::is_reference_v<T>,
285 "Expected a reference to a function.");
298 return B !=
E && std::next(
B) ==
E;
303template <
typename ContainerTy>
311template <
typename T>
auto drop_begin(
T &&RangeOrContainer,
size_t N = 1) {
318template <
typename T>
auto drop_end(
T &&RangeOrContainer,
size_t N = 1) {
320 std::prev(
adl_end(RangeOrContainer),
N));
326template <
typename ItTy,
typename FuncTy,
327 typename ReferenceTy =
328 decltype(std::declval<FuncTy>()(*std::declval<ItTy>()))>
331 mapped_iterator<ItTy, FuncTy>, ItTy,
332 typename std::iterator_traits<ItTy>::iterator_category,
333 std::remove_reference_t<ReferenceTy>,
334 typename std::iterator_traits<ItTy>::difference_type,
335 std::remove_reference_t<ReferenceTy> *, ReferenceTy> {
353template <
class ItTy,
class FuncTy>
358template <
class ContainerTy,
class FuncTy>
368template <
typename DerivedT,
typename ItTy,
typename ReferenceTy>
372 typename std::iterator_traits<ItTy>::iterator_category,
373 std::remove_reference_t<ReferenceTy>,
374 typename std::iterator_traits<ItTy>::difference_type,
375 std::remove_reference_t<ReferenceTy> *, ReferenceTy> {
385 return static_cast<const DerivedT &
>(*this).mapElement(*this->I);
390template <
typename Range>
392 decltype(
adl_rbegin(std::declval<Range &>()));
394template <
typename Range>
401template <
typename ContainerTy> [[nodiscard]]
auto reverse(ContainerTy &&
C) {
425template <
typename WrappedIteratorT,
typename PredicateT,
typename IterTag>
428 filter_iterator_base<WrappedIteratorT, PredicateT, IterTag>,
430 std::common_type_t<IterTag,
431 typename std::iterator_traits<
432 WrappedIteratorT>::iterator_category>> {
440 while (this->I !=
End && !
Pred(*this->I))
456 using BaseT::operator++;
464 decltype(
auto)
operator*()
const {
465 assert(BaseT::wrapped() !=
End &&
"Cannot dereference end iterator!");
466 return BaseT::operator*();
469 decltype(
auto) operator->()
const {
470 assert(BaseT::wrapped() !=
End &&
"Cannot dereference end iterator!");
471 return BaseT::operator->();
477 typename IterTag = std::forward_iterator_tag>
489template <
typename WrappedIteratorT,
typename PredicateT>
491 std::bidirectional_iterator_tag>
493 std::bidirectional_iterator_tag> {
496 void findPrevValid() {
497 while (!this->
Pred(*this->I))
502 using BaseT::operator--;
521template <
typename IterT>
523 std::is_base_of_v<std::bidirectional_iterator_tag,
524 typename std::iterator_traits<IterT>::iterator_category>,
525 std::bidirectional_iterator_tag, std::forward_iterator_tag>;
531template <
typename WrappedIteratorT,
typename PredicateT>
543template <
typename RangeT,
typename PredicateT>
546 using FilterIteratorT =
550 return make_range(FilterIteratorT(
B,
E, Pred), FilterIteratorT(
E,
E, Pred));
570template <
typename WrappedIteratorT>
573 WrappedIteratorT, std::input_iterator_tag> {
576 using PointerT =
typename std::iterator_traits<WrappedIteratorT>::pointer;
579#if LLVM_ENABLE_ABI_BREAKING_CHECKS
580 bool IsEarlyIncremented =
false;
586 using BaseT::operator*;
587 decltype(*std::declval<WrappedIteratorT>())
operator*() {
588#if LLVM_ENABLE_ABI_BREAKING_CHECKS
589 assert(!IsEarlyIncremented &&
"Cannot dereference twice!");
590 IsEarlyIncremented =
true;
595 using BaseT::operator++;
597#if LLVM_ENABLE_ABI_BREAKING_CHECKS
598 assert(IsEarlyIncremented &&
"Cannot increment before dereferencing!");
599 IsEarlyIncremented =
false;
606#if LLVM_ENABLE_ABI_BREAKING_CHECKS
607 assert(!
LHS.IsEarlyIncremented &&
"Cannot compare after dereferencing!");
609 return (
const BaseT &)
LHS == (
const BaseT &)
RHS;
625template <
typename RangeT>
628 using EarlyIncIteratorT =
635template <
typename R,
typename UnaryPredicate>
636bool all_of(R &&range, UnaryPredicate
P);
638template <
typename R,
typename UnaryPredicate>
639bool any_of(R &&range, UnaryPredicate
P);
641template <
typename T>
bool all_equal(std::initializer_list<T> Values);
652 using type = std::tuple<decltype(*declval<Iters>())...>;
655template <
typename ZipType,
typename ReferenceTupleType,
typename... Iters>
659 std::bidirectional_iterator_tag,
660 typename std::iterator_traits<Iters>::iterator_category...>,
663 typename std::iterator_traits<
664 std::tuple_element_t<0, std::tuple<Iters...>>>::difference_type,
669 ReferenceTupleType *, ReferenceTupleType>;
671template <
typename ZipType,
typename ReferenceTupleType,
typename... Iters>
684 template <
size_t... Ns>
void tup_inc(std::index_sequence<Ns...>) {
688 template <
size_t... Ns>
void tup_dec(std::index_sequence<Ns...>) {
692 template <
size_t... Ns>
694 std::index_sequence<Ns...>)
const {
706 return static_cast<ZipType &
>(*this);
711 "All inner iterators must be at least bidirectional.");
713 return static_cast<ZipType &
>(*this);
722template <
typename... Iters>
724 typename ZipTupleType<Iters...>::type, Iters...> {
733template <
typename... Iters>
735 :
zip_common<zip_shortest<Iters...>, typename ZipTupleType<Iters...>::type,
741 return any_iterator_equals(other, std::index_sequence_for<Iters...>{});
745 template <
size_t... Ns>
747 std::index_sequence<Ns...>)
const {
754template <
template <
typename...>
class ItType,
typename TupleStorageType,
755 typename IndexSequence>
759template <
template <
typename...>
class ItType,
typename... Args,
762 std::index_sequence<Ns...>> {
764 std::get<Ns>(declval<std::tuple<Args...> &>())))...>;
768template <
template <
typename...>
class ItType,
typename... Args,
771 std::index_sequence<Ns...>> {
773 std::get<Ns>(declval<
const std::tuple<Args...> &>())))...>;
776template <
template <
typename...>
class ItType,
typename... Args>
class zippy {
778 std::tuple<Args...> storage;
779 using IndexSequence = std::index_sequence_for<Args...>;
783 IndexSequence>::type;
786 IndexSequence>::type;
802 template <
size_t... Ns>
806 template <
size_t... Ns>
iterator begin_impl(std::index_sequence<Ns...>) {
810 template <
size_t... Ns>
814 template <
size_t... Ns>
iterator end_impl(std::index_sequence<Ns...>) {
823template <
typename T,
typename U,
typename...
Args>
827 std::forward<T>(t), std::forward<U>(u), std::forward<Args>(
args)...);
833template <
typename T,
typename U,
typename... Args>
837 "Iteratees do not have equal length");
839 std::forward<T>(t), std::forward<U>(u), std::forward<Args>(
args)...);
846template <
typename T,
typename U,
typename... Args>
850 "First iteratee is not the shortest");
853 std::forward<T>(t), std::forward<U>(u), std::forward<Args>(
args)...);
857template <
typename Iter>
864template <
typename Iter>
866 std::remove_const_t<std::remove_reference_t<
decltype(*I)>>> {
873 using type = std::optional<std::remove_const_t<
874 std::remove_reference_t<decltype(*std::declval<Iter>())>>>;
878 using type = std::tuple<typename ZipLongestItemType<Iters>::type...>;
881template <
typename... Iters>
884 zip_longest_iterator<Iters...>,
886 std::forward_iterator_tag,
887 typename std::iterator_traits<Iters>::iterator_category...>,
888 typename ZipLongestTupleType<Iters...>::type,
889 typename std::iterator_traits<
890 std::tuple_element_t<0, std::tuple<Iters...>>>::difference_type,
891 typename ZipLongestTupleType<Iters...>::type *,
892 typename ZipLongestTupleType<Iters...>::type> {
897 std::tuple<Iters...> iterators;
898 std::tuple<Iters...> end_iterators;
900 template <
size_t... Ns>
902 std::index_sequence<Ns...>)
const {
903 return ((std::get<Ns>(this->iterators) != std::get<Ns>(other.iterators)) ||
907 template <
size_t... Ns> value_type
deref(std::index_sequence<Ns...>)
const {
909 deref_or_none(std::get<Ns>(iterators), std::get<Ns>(end_iterators))...);
912 template <
size_t... Ns>
913 decltype(iterators) tup_inc(std::index_sequence<Ns...>)
const {
914 return std::tuple<Iters...>(
915 next_or_end(std::get<Ns>(iterators), std::get<Ns>(end_iterators))...);
920 : iterators(
std::forward<Iters>(ts.first)...),
921 end_iterators(
std::forward<Iters>(ts.second)...) {}
924 return deref(std::index_sequence_for<Iters...>{});
928 iterators = tup_inc(std::index_sequence_for<Iters...>{});
933 return !
test(other, std::index_sequence_for<Iters...>{});
948 std::tuple<Args...> ts;
950 template <
size_t... Ns>
951 iterator begin_impl(std::index_sequence<Ns...>)
const {
953 adl_end(std::get<Ns>(ts)))...);
956 template <
size_t... Ns>
iterator end_impl(std::index_sequence<Ns...>)
const {
958 adl_end(std::get<Ns>(ts)))...);
965 return begin_impl(std::index_sequence_for<Args...>{});
967 iterator end()
const {
return end_impl(std::index_sequence_for<Args...>{}); }
974template <
typename T,
typename U,
typename... Args>
978 std::forward<T>(t), std::forward<U>(u), std::forward<Args>(
args)...);
991template <
typename ValueT,
typename... IterTs>
994 std::forward_iterator_tag, ValueT> {
995 using BaseT =
typename concat_iterator::iterator_facade_base;
997 static constexpr bool ReturnsByValue =
998 !(std::is_reference_v<decltype(*std::declval<IterTs>())> && ...);
1000 using reference_type =
1001 typename std::conditional_t<ReturnsByValue, ValueT, ValueT &>;
1004 typename std::conditional_t<ReturnsByValue, std::optional<ValueT>,
1013 std::tuple<IterTs...> Begins;
1014 std::tuple<IterTs...> Ends;
1020 template <
size_t Index>
bool incrementHelper() {
1021 auto &Begin = std::get<Index>(Begins);
1022 auto &End = std::get<Index>(Ends);
1033 template <
size_t... Ns>
void increment(std::index_sequence<Ns...>) {
1036 &concat_iterator::incrementHelper<Ns>...};
1039 for (
auto &IncrementHelperFn : IncrementHelperFns)
1040 if ((this->*IncrementHelperFn)())
1049 template <
size_t Index> handle_type getHelper()
const {
1050 auto &Begin = std::get<Index>(Begins);
1051 auto &End = std::get<Index>(Ends);
1055 if constexpr (ReturnsByValue)
1065 template <
size_t... Ns> reference_type get(std::index_sequence<Ns...>)
const {
1068 const = {&concat_iterator::getHelper<Ns>...};
1071 for (
auto &GetHelperFn : GetHelperFns)
1072 if (
auto P = (this->*GetHelperFn)())
1075 llvm_unreachable(
"Attempted to get a pointer from an end concat iterator!");
1083 template <
typename... RangeTs>
1087 using BaseT::operator++;
1090 increment(std::index_sequence_for<IterTs...>());
1095 return get(std::index_sequence_for<IterTs...>());
1099 return Begins ==
RHS.Begins && Ends ==
RHS.Ends;
1114 decltype(
adl_begin(std::declval<RangeTs &>()))...>;
1117 std::tuple<RangeTs...> Ranges;
1119 template <
size_t... Ns>
iterator begin_impl(std::index_sequence<Ns...>) {
1120 return iterator(std::get<Ns>(Ranges)...);
1122 template <
size_t... Ns>
1123 iterator begin_impl(std::index_sequence<Ns...>)
const {
1124 return iterator(std::get<Ns>(Ranges)...);
1126 template <
size_t... Ns>
iterator end_impl(std::index_sequence<Ns...>) {
1128 adl_end(std::get<Ns>(Ranges)))...);
1130 template <
size_t... Ns> iterator end_impl(std::index_sequence<Ns...>)
const {
1132 adl_end(std::get<Ns>(Ranges)))...);
1137 : Ranges(
std::forward<RangeTs>(Ranges)...) {}
1140 return begin_impl(std::index_sequence_for<RangeTs...>{});
1143 return begin_impl(std::index_sequence_for<RangeTs...>{});
1146 return end_impl(std::index_sequence_for<RangeTs...>{});
1149 return end_impl(std::index_sequence_for<RangeTs...>{});
1159template <
typename ValueT,
typename... RangeTs>
1160[[nodiscard]] detail::concat_range<ValueT, RangeTs...>
1162 static_assert(
sizeof...(RangeTs) > 1,
1163 "Need more than one range to concatenate!");
1165 std::forward<RangeTs>(Ranges)...);
1170template <
typename DerivedT,
typename BaseT,
typename T,
1171 typename PointerT =
T *,
typename ReferenceT =
T &>
1174 std::random_access_iterator_tag, T,
1175 std::ptrdiff_t, PointerT, ReferenceT> {
1191 this->
index += offset;
1192 return static_cast<DerivedT &
>(*this);
1195 this->
index -= offset;
1196 return static_cast<DerivedT &
>(*this);
1223template <
typename DerivedT,
typename BaseT,
typename T,
1224 typename PointerT =
T *,
typename ReferenceT =
T &>
1231 PointerT, ReferenceT> {
1235 return DerivedT::dereference_iterator(this->
getBase(), this->
getIndex());
1258 assert(Index <
size() &&
"invalid index for value range");
1259 return DerivedT::dereference_iterator(
base,
static_cast<ptrdiff_t>(Index));
1267 return (*
this)[
size() - 1];
1277 DerivedT
slice(
size_t n,
size_t m)
const {
1278 assert(n + m <=
size() &&
"invalid size specifiers");
1279 return DerivedT(offset_base(
base, n), m);
1284 assert(
size() >= n &&
"Dropping more elements than exist");
1289 assert(
size() >= n &&
"Dropping more elements than exist");
1296 :
static_cast<const DerivedT &
>(*this);
1302 :
static_cast<const DerivedT &
>(*this);
1306 template <
typename RangeT,
typename = std::enable_if_t<std::is_constructible<
1308 operator RangeT()
const {
1317 static BaseT offset_base(
const BaseT &
base,
size_t n) {
1318 return n == 0 ?
base : DerivedT::offset_base(
base, n);
1334template <
typename OtherT,
typename DerivedT,
typename BaseT,
typename T,
1335 typename PointerT,
typename ReferenceT>
1338 const OtherT &rhs) {
1339 return std::equal(lhs.begin(), lhs.end(), rhs.begin(), rhs.end());
1342template <
typename OtherT,
typename DerivedT,
typename BaseT,
typename T,
1343 typename PointerT,
typename ReferenceT>
1346 const OtherT &rhs) {
1347 return !(lhs == rhs);
1358template <
typename DerivedT,
typename BaseT,
typename T,
1359 typename PointerT =
T *,
typename ReferenceT =
T &>
1362 DerivedT, std::pair<BaseT, ptrdiff_t>, T, PointerT, ReferenceT> {
1366 DerivedT,
std::pair<BaseT,
ptrdiff_t>,
T, PointerT, ReferenceT>(
1369 DerivedT, std::pair<BaseT, ptrdiff_t>,
T, PointerT,
1379 static std::pair<BaseT, ptrdiff_t>
1383 return std::make_pair(
base.first,
base.second + index);
1389 return DerivedT::dereference(
base.first,
base.second + index);
1402 using type = std::conditional_t<std::is_reference<EltTy>::value, FirstTy,
1403 std::remove_reference_t<FirstTy>>;
1412 EltTy,
decltype((elt.first))>::type {
1421 std::forward<ContainerTy>(c),
1424 decltype((elt.second))>::type {
1438 return std::less<>()(std::get<0>(lhs), std::get<0>(rhs));
1447 return std::less<>()(std::get<1>(lhs), std::get<1>(rhs));
1453template<
typename FuncTy>
1457 template <
typename T>
1458 decltype(
auto)
operator()(
const T &lhs,
const T &rhs)
const {
1459 return func(lhs.first, rhs.first);
1471template <
typename HeadT,
typename... TailTs>
1477 using Visitor<TailTs...>::operator();
1515template <
typename... CallableTs>
1517 return detail::Visitor<CallableTs...>(std::forward<CallableTs>(Callables)...);
1526template <
class Iterator,
class RNG>
1531 typename std::iterator_traits<Iterator>::difference_type difference_type;
1532 for (
auto size = last - first;
size > 1; ++first, (void)--
size) {
1533 difference_type offset =
g() %
size;
1536 if (offset != difference_type(0))
1537 std::iter_swap(first, first + offset);
1544 if (std::less<T>()(*
reinterpret_cast<const T*
>(P1),
1545 *
reinterpret_cast<const T*
>(P2)))
1547 if (std::less<T>()(*
reinterpret_cast<const T*
>(P2),
1548 *
reinterpret_cast<const T*
>(P1)))
1557 (
const void*,
const void*) {
1561#ifdef EXPENSIVE_CHECKS
1564inline unsigned presortShuffleEntropy() {
1565 static unsigned Result(std::random_device{}());
1569template <
class IteratorTy>
1570inline void presortShuffle(IteratorTy Start, IteratorTy End) {
1571 std::mt19937 Generator(presortShuffleEntropy());
1592template<
class IteratorTy>
1596 auto NElts = End - Start;
1597 if (NElts <= 1)
return;
1598#ifdef EXPENSIVE_CHECKS
1599 detail::presortShuffle<IteratorTy>(Start, End);
1604template <
class IteratorTy>
1606 IteratorTy Start, IteratorTy End,
1608 const typename std::iterator_traits<IteratorTy>::value_type *,
1609 const typename std::iterator_traits<IteratorTy>::value_type *)) {
1612 auto NElts = End - Start;
1613 if (NElts <= 1)
return;
1614#ifdef EXPENSIVE_CHECKS
1615 detail::presortShuffle<IteratorTy>(Start, End);
1617 qsort(&*Start, NElts,
sizeof(*Start),
1618 reinterpret_cast<int (*)(
const void *,
const void *)
>(Compare));
1622template <
typename T>
1627 std::is_trivially_copyable<typename std::iterator_traits<T>::value_type>>;
1632template <
typename IteratorTy>
1633inline void sort(IteratorTy Start, IteratorTy End) {
1639#ifdef EXPENSIVE_CHECKS
1640 detail::presortShuffle<IteratorTy>(Start, End);
1642 std::sort(Start, End);
1646template <
typename Container>
inline void sort(Container &&
C) {
1650template <
typename IteratorTy,
typename Compare>
1651inline void sort(IteratorTy Start, IteratorTy End, Compare Comp) {
1652#ifdef EXPENSIVE_CHECKS
1653 detail::presortShuffle<IteratorTy>(Start, End);
1655 std::sort(Start, End, Comp);
1658template <
typename Container,
typename Compare>
1659inline void sort(Container &&
C, Compare Comp) {
1665template <
typename R>
1668 std::is_base_of<std::random_access_iterator_tag,
1669 typename std::iterator_traits<
decltype(
1670 Range.begin())>::iterator_category>::value,
1671 void> * =
nullptr) {
1672 return std::distance(
Range.begin(),
Range.end());
1676template <
typename Range>
1678 decltype(
adl_size(std::declval<Range &>()));
1680template <
typename Range>
1701 std::forward<E>(
Init));
1706template <
typename R,
typename UnaryFunction>
1713template <
typename R,
typename UnaryPredicate>
1720template <
typename R,
typename UnaryPredicate>
1727template <
typename R,
typename UnaryPredicate>
1740template <
typename R,
typename T>
auto find(R &&
Range,
const T &Val) {
1746template <
typename R,
typename UnaryPredicate>
1751template <
typename R,
typename UnaryPredicate>
1758template <
typename R,
typename UnaryPredicate>
1765template <
typename R,
typename OutputIt,
typename UnaryPredicate>
1775template <
typename T,
typename R,
typename Predicate>
1779 if (
T *PRC =
P(
A, AllowRepeats)) {
1781 if (!AllowRepeats || PRC != RC)
1800template <
typename T,
typename R,
typename Predicate>
1802 bool AllowRepeats =
false) {
1805 std::pair<T *, bool> PRC =
P(
A, AllowRepeats);
1807 assert(PRC.first ==
nullptr &&
1808 "Inconsistent return values in find_singleton_nested.");
1813 if (!AllowRepeats || PRC.first != RC)
1814 return {
nullptr,
true};
1823template <
typename R,
typename OutputIt>
1830template <
typename R,
typename OutputIt,
typename UnaryPredicate,
typename T>
1832 const T &NewValue) {
1839template <
typename R,
typename OutputIt,
typename T>
1841 const T &NewValue) {
1848template <
typename R,
typename T>
1855template <
typename R,
typename OutputIt>
1861template <
typename Range,
typename Element>
1863 decltype(std::declval<Range &>().contains(std::declval<const Element &>()));
1865template <
typename Range,
typename Element>
1869template <
typename Range,
typename Element>
1871 decltype(std::declval<Range &>().find(std::declval<const Element &>()) !=
1872 std::declval<Range &>().end());
1874template <
typename Range,
typename Element>
1885template <
typename R,
typename E>
1888 return Range.contains(Element);
1898template <
typename T,
typename E>
1901 for (
const T &V : Set)
1923template <
typename R1,
typename R2>
bool includes(R1 &&Range1,
R2 &&Range2) {
1924 assert(
is_sorted(Range1) &&
"Range1 must be sorted in non-descending order");
1925 assert(
is_sorted(Range2) &&
"Range2 must be sorted in non-descending order");
1933template <
typename R1,
typename R2,
typename Compare>
1938 adl_end(Range2), std::forward<Compare>(
C));
1943template <
typename R,
typename E>
auto count(R &&
Range,
const E &Element) {
1949template <
typename R,
typename UnaryPredicate>
1956template <
typename R,
typename OutputIt,
typename UnaryFunction>
1963template <
typename R,
typename UnaryPredicate>
1972 std::forward<T>(
Value));
1975template <
typename R,
typename T,
typename Compare>
1978 std::forward<T>(
Value),
C);
1985 std::forward<T>(
Value));
1988template <
typename R,
typename T,
typename Compare>
1991 std::forward<T>(
Value),
C);
1998 std::forward<T>(
Value));
2001template <
typename R,
typename T,
typename Compare>
2004 std::forward<T>(
Value),
C);
2036template <
typename R1,
typename R2>
auto mismatch(R1 &&Range1,
R2 &&Range2) {
2041template <
typename R,
typename IterTy>
2046template <
typename R>
2051template <
typename R,
typename Compare>
2058template <
typename R,
typename Predicate,
2059 typename Val =
decltype(*
adl_begin(std::declval<R>()))>
2064template<
typename Range,
typename Predicate>
2077template <
typename L,
typename R>
bool equal(L &&LRange, R &&RRange) {
2082template <
typename L,
typename R,
typename BinaryPredicate>
2083bool equal(L &&LRange, R &&RRange, BinaryPredicate
P) {
2092 return Begin == End || std::equal(std::next(Begin), End, Begin);
2097template <
typename T>
bool all_equal(std::initializer_list<T> Values) {
2108template <
typename Container,
typename UnaryPredicate>
2116template <
typename Container,
typename ValueType>
2118 C.erase(std::remove(
C.begin(),
C.end(), V),
C.end());
2124template <
typename Container,
typename Range>
2130template <
typename Container,
typename... Args>
2134 ((void)
C.insert(
C.end(), std::forward<Args>(Values)), ...);
2139template <
typename Container,
typename RandomAccessIterator>
2140void replace(Container &Cont,
typename Container::iterator ContIt,
2141 typename Container::iterator ContEnd, RandomAccessIterator ValIt,
2142 RandomAccessIterator ValEnd) {
2144 if (ValIt == ValEnd) {
2145 Cont.erase(ContIt, ContEnd);
2148 if (ContIt == ContEnd) {
2149 Cont.insert(ContIt, ValIt, ValEnd);
2160template <
typename Container,
typename Range = std::initializer_list<
2161 typename Container::value_type>>
2162void replace(Container &Cont,
typename Container::iterator ContIt,
2163 typename Container::iterator ContEnd,
Range &&R) {
2177template <
typename ForwardIterator,
typename UnaryFunctor,
2178 typename NullaryFunctor,
2179 typename = std::enable_if_t<
2180 !std::is_constructible<StringRef, UnaryFunctor>::value &&
2181 !std::is_constructible<StringRef, NullaryFunctor>::value>>
2182inline void interleave(ForwardIterator begin, ForwardIterator end,
2183 UnaryFunctor each_fn, NullaryFunctor between_fn) {
2188 for (; begin != end; ++begin) {
2194template <
typename Container,
typename UnaryFunctor,
typename NullaryFunctor,
2195 typename = std::enable_if_t<
2196 !std::is_constructible<StringRef, UnaryFunctor>::value &&
2197 !std::is_constructible<StringRef, NullaryFunctor>::value>>
2199 NullaryFunctor between_fn) {
2204template <
typename Container,
typename UnaryFunctor,
typename StreamT,
2206inline void interleave(
const Container &c, StreamT &os, UnaryFunctor each_fn,
2210template <
typename Container,
typename StreamT,
2215 c, os, [&](
const T &a) { os << a; }, separator);
2218template <
typename Container,
typename UnaryFunctor,
typename StreamT,
2221 UnaryFunctor each_fn) {
2224template <
typename Container,
typename StreamT,
2240template<
typename First,
typename Second>
2243 return std::hash<First>()(
P.first) * 31 + std::hash<Second>()(
P.second);
2258 return func(*lhs, *rhs);
2267template <
typename... Iters>
2281template <
typename... Iters>
2283 EnumeratorTupleType<Iters...>, Iters...> {
2284 static_assert(
sizeof...(Iters) >= 2,
"Expected at least two iteratees");
2289 return std::get<1>(this->
iterators) == std::get<1>(
Other.iterators);
2294 static constexpr std::size_t
NumRefs =
sizeof...(Refs);
2306 : Idx(Index), Storage(
std::forward<Refs>(Rs)...) {}
2310 std::size_t
index()
const {
return Idx; }
2316 return std::get<0>(Storage);
2322 template <std::
size_t I,
typename = std::enable_if_t<I == 0>>
2329 template <std::
size_t I,
typename = std::enable_if_t<I != 0>>
2334 return std::get<
I - 1>(Result.Storage);
2337 template <
typename... Ts>
2339 const std::tuple<std::size_t, Ts...> &
Other) {
2340 static_assert(
NumRefs ==
sizeof...(Ts),
"Size mismatch");
2341 if (Result.Idx != std::get<0>(
Other))
2343 return Result.is_value_equal(
Other, std::make_index_sequence<NumRefs>{});
2347 template <
typename Tuple, std::size_t... Idx>
2348 bool is_value_equal(
const Tuple &
Other, std::index_sequence<Idx...>)
const {
2349 return ((std::get<Idx>(Storage) == std::get<Idx + 1>(
Other)) && ...);
2360 mutable range_reference_tuple Storage;
2365 std::random_access_iterator_tag, std::size_t> {
2379 return Index - R.Index;
2390 return Lhs.Index == Rhs.Index;
2394 return Lhs.Index < Rhs.Index;
2419 index_range(std::size_t Begin, std::size_t End) : Begin(Begin), End(End) {}
2460template <
typename FirstRange,
typename... RestRanges>
2462 if constexpr (
sizeof...(Rest) != 0) {
2471 FirstRange, RestRanges...>;
2473 std::forward<RestRanges>(Rest)...);
2478template <
typename Predicate,
typename... Args>
2481 auto it = z.begin();
2484 if (!std::apply([&](
auto &&...
args) {
return P(
args...); }, *it))
2488 return it.all_equals(end);
2493template <
typename... ArgsThenPredicate,
size_t... InputIndexes>
2495 std::tuple<ArgsThenPredicate...> argsThenPredicate,
2496 std::index_sequence<InputIndexes...>) {
2497 auto constexpr OutputIndex =
2498 std::tuple_size<
decltype(argsThenPredicate)>
::value - 1;
2500 std::get<InputIndexes>(argsThenPredicate)...);
2508template <
typename... ArgsAndPredicate>
2511 std::forward_as_tuple(argsAndPredicate...),
2512 std::make_index_sequence<
sizeof...(argsAndPredicate) - 1>{});
2518template <
typename IterTy,
2519 typename Pred =
bool (*)(
const decltype(*std::declval<IterTy>()) &)>
2521 IterTy &&Begin, IterTy &&End,
unsigned N,
2522 Pred &&ShouldBeCounted =
2523 [](
const decltype(*std::declval<IterTy>()) &) {
return true; },
2525 !std::is_base_of<std::random_access_iterator_tag,
2526 typename std::iterator_traits<std::remove_reference_t<
2527 decltype(Begin)>>::iterator_category>::value,
2528 void> * =
nullptr) {
2529 for (;
N; ++Begin) {
2532 N -= ShouldBeCounted(*Begin);
2534 for (; Begin != End; ++Begin)
2535 if (ShouldBeCounted(*Begin))
2543template <
typename IterTy,
2544 typename Pred = bool (*)(
const decltype(*std::declval<IterTy>()) &)>
2546 IterTy &&Begin, IterTy &&End,
unsigned N,
2547 Pred &&ShouldBeCounted =
2548 [](
const decltype(*std::declval<IterTy>()) &) {
return true; },
2550 !std::is_base_of<std::random_access_iterator_tag,
2551 typename std::iterator_traits<std::remove_reference_t<
2552 decltype(Begin)>>::iterator_category>::value,
2553 void> * =
nullptr) {
2554 for (;
N; ++Begin) {
2557 N -= ShouldBeCounted(*Begin);
2564template <
typename IterTy,
2565 typename Pred = bool (*)(
const decltype(*std::declval<IterTy>()) &)>
2567 IterTy &&Begin, IterTy &&End,
unsigned N,
2568 Pred &&ShouldBeCounted = [](
const decltype(*std::declval<IterTy>()) &) {
2571 assert(
N != std::numeric_limits<unsigned>::max());
2576template <
typename ContainerTy>
bool hasNItems(ContainerTy &&
C,
unsigned N) {
2581template <
typename ContainerTy>
2587template <
typename ContainerTy>
2609template <
typename T>
2615template <
typename... Refs>
2616struct tuple_size<
llvm::detail::enumerator_result<Refs...>>
2617 : std::integral_constant<std::size_t, sizeof...(Refs)> {};
2619template <std::size_t
I,
typename... Refs>
2620struct tuple_element<
I,
llvm::detail::enumerator_result<Refs...>>
2621 : std::tuple_element<I, std::tuple<Refs...>> {};
2623template <std::size_t
I,
typename... Refs>
2624struct tuple_element<
I,
const llvm::detail::enumerator_result<Refs...>>
2625 : std::tuple_element<I, std::tuple<Refs...>> {};
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
This file contains library features backported from future STL versions.
INLINE void g(uint32_t *state, size_t a, size_t b, size_t c, size_t d, uint32_t x, uint32_t y)
StringRef - Represent a constant reference to a string, i.e.
LLVM Value Representation.
decltype(auto) operator()(Pn &&...Params) const
Templated storage wrapper for a callable.
Callable & operator=(Callable &&Other)
Callable(Callable const &Other)=default
Callable & operator=(Callable const &Other)
Callable(Callable &&Other)=default
Iterator wrapper that concatenates sequences together.
concat_iterator & operator++()
bool operator==(const concat_iterator &RHS) const
reference_type operator*() const
concat_iterator(RangeTs &&...Ranges)
Constructs an iterator from a sequence of ranges.
Helper to store a sequence of ranges being concatenated and access them.
concat_range(RangeTs &&... Ranges)
concat_iterator< ValueT, decltype(adl_begin(std::declval< RangeTs & >()))... > iterator
Return a reference to the first or second member of a reference.
std::conditional_t< std::is_reference< EltTy >::value, FirstTy, std::remove_reference_t< FirstTy > > type
An iterator element of this range.
ReferenceT operator*() const
The class represents the base of a range of indexed_accessor_iterators.
DerivedT slice(size_t n, size_t m) const
Drop the first N elements, and keep M elements.
size_t size() const
Return the size of this range.
bool empty() const
Return if the range is empty.
indexed_accessor_range_base & operator=(const indexed_accessor_range_base &)=default
DerivedT take_front(size_t n=1) const
Take the first n elements.
ReferenceT operator[](size_t Index) const
DerivedT drop_back(size_t n=1) const
Drop the last n elements.
indexed_accessor_range_base RangeBaseT
DerivedT take_back(size_t n=1) const
Take the last n elements.
DerivedT drop_front(size_t n=1) const
Drop the first n elements.
indexed_accessor_range_base(const indexed_accessor_range_base &)=default
indexed_accessor_range_base(BaseT base, ptrdiff_t count)
indexed_accessor_range_base(indexed_accessor_range_base &&)=default
indexed_accessor_range_base(iterator begin, iterator end)
ptrdiff_t count
The size from the owning range.
BaseT base
The base that owns the provided range of values.
indexed_accessor_range_base(const iterator_range< iterator > &range)
const BaseT & getBase() const
Returns the base of this range.
zip_longest_iterator(std::pair< Iters &&, Iters && >... ts)
value_type operator*() const
bool operator==(const zip_longest_iterator< Iters... > &other) const
zip_longest_iterator< Iters... > & operator++()
typename ZipLongestTupleType< Iters... >::type value_type
typename iterator::iterator_category iterator_category
typename iterator::pointer pointer
typename iterator::difference_type difference_type
zip_longest_iterator< decltype(adl_begin(std::declval< Args >()))... > iterator
typename iterator::reference reference
zip_longest_range(Args &&... ts_)
typename iterator::value_type value_type
typename ZippyIteratorTuple< ItType, decltype(storage), IndexSequence >::type iterator
typename iterator::value_type value_type
typename iterator::difference_type difference_type
typename iterator::reference reference
typename iterator::pointer pointer
typename ZippyIteratorTuple< ItType, const decltype(storage), IndexSequence >::type const_iterator
typename const_iterator::reference const_reference
const_iterator begin() const
typename iterator::iterator_category iterator_category
const_iterator end() const
A pseudo-iterator adaptor that is designed to implement "early increment" style loops.
friend bool operator==(const early_inc_iterator_impl &LHS, const early_inc_iterator_impl &RHS)
early_inc_iterator_impl(WrappedIteratorT I)
early_inc_iterator_impl & operator++()
decltype(*std::declval< WrappedIteratorT >()) operator*()
An iterator adaptor that filters the elements of given inner iterators.
filter_iterator_base & operator++()
filter_iterator_base()=default
filter_iterator_base(WrappedIteratorT Begin, WrappedIteratorT End, PredicateT Pred)
filter_iterator_impl()=default
filter_iterator_impl(WrappedIteratorT Begin, WrappedIteratorT End, PredicateT Pred)
filter_iterator_impl & operator--()
Specialization of filter_iterator_base for forward iteration only.
filter_iterator_impl(WrappedIteratorT Begin, WrappedIteratorT End, PredicateT Pred)
filter_iterator_impl()=default
index_range(std::size_t Begin, std::size_t End)
detail::index_iterator begin() const
detail::index_iterator end() const
A utility class used to implement an iterator that contains some base object and an index.
DerivedT & operator+=(ptrdiff_t offset)
const BaseT & getBase() const
Returns the current base of the iterator.
bool operator==(const indexed_accessor_iterator &rhs) const
indexed_accessor_iterator(BaseT base, ptrdiff_t index)
DerivedT & operator-=(ptrdiff_t offset)
ptrdiff_t operator-(const indexed_accessor_iterator &rhs) const
bool operator<(const indexed_accessor_iterator &rhs) const
ptrdiff_t getIndex() const
Returns the current index of the iterator.
indexed_accessor_range(BaseT base, ptrdiff_t startIndex, ptrdiff_t count)
const BaseT & getBase() const
Returns the current base of the range.
ptrdiff_t getStartIndex() const
Returns the current start index of the range.
static ReferenceT dereference_iterator(const std::pair< BaseT, ptrdiff_t > &base, ptrdiff_t index)
See detail::indexed_accessor_range_base for details.
static std::pair< BaseT, ptrdiff_t > offset_base(const std::pair< BaseT, ptrdiff_t > &base, ptrdiff_t index)
See detail::indexed_accessor_range_base for details.
iterator_adaptor_base()=default
CRTP base class which implements the entire standard iterator facade in terms of a minimal subset of ...
std::common_type_t< std::forward_iterator_tag, std::iterator_traits< Iters >::iterator_category... > iterator_category
std::iterator_traits< std::tuple_element_t< 0, std::tuple< Iters... > > >::difference_type difference_type
ZipLongestTupleType< Iters... >::type reference
ZipLongestTupleType< Iters... >::type * pointer
A range adaptor for a pair of iterators.
mapped_iterator_base BaseT
mapped_iterator_base(ItTy U)
ReferenceTy operator*() const
mapped_iterator()=default
const FuncTy & getFunction() const
mapped_iterator(ItTy U, FuncTy F)
ReferenceTy operator*() const
This provides a very simple, boring adaptor for a begin and end iterator into a range type.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
constexpr char Args[]
Key for Kernel::Metadata::mArgs.
@ Tail
Attemps to make calls as fast as possible while guaranteeing that tail call optimization can always b...
@ C
The default llvm calling convention, compatible with C.
decltype(adl_rbegin(std::declval< Range & >())) check_has_free_function_rbegin
auto deref_or_none(const Iter &I, const Iter &End) -> std::optional< std::remove_const_t< std::remove_reference_t< decltype(*I)> > >
enumerator_result< decltype(*declval< Iters >())... > EnumeratorTupleType
bool all_of_zip_predicate_first(Predicate &&P, Args &&...args)
const char unit< Period >::value[]
static constexpr bool HasMemberFind
static constexpr bool HasFreeFunctionRBegin
decltype(adl_size(std::declval< Range & >())) check_has_free_function_size
bool operator!=(const DenseSetImpl< ValueT, MapTy, ValueInfoT > &LHS, const DenseSetImpl< ValueT, MapTy, ValueInfoT > &RHS)
Inequality comparison for DenseSet.
static constexpr bool HasMemberContains
std::conditional_t< std::is_base_of_v< std::bidirectional_iterator_tag, typename std::iterator_traits< IterT >::iterator_category >, std::bidirectional_iterator_tag, std::forward_iterator_tag > fwd_or_bidi_tag
A type alias which is std::bidirectional_iterator_tag if the category of IterT derives from it,...
bool all_of_zip_predicate_last(std::tuple< ArgsThenPredicate... > argsThenPredicate, std::index_sequence< InputIndexes... >)
decltype(std::declval< Range & >().contains(std::declval< const Element & >())) check_has_member_contains_t
decltype(sizeof(T)) has_sizeof
decltype(std::declval< Range & >().find(std::declval< const Element & >()) != std::declval< Range & >().end()) check_has_member_find_t
Iter next_or_end(const Iter &I, const Iter &End)
iterator_facade_base< ZipType, std::common_type_t< std::bidirectional_iterator_tag, typename std::iterator_traits< Iters >::iterator_category... >, ReferenceTupleType, typename std::iterator_traits< std::tuple_element_t< 0, std::tuple< Iters... > > >::difference_type, ReferenceTupleType *, ReferenceTupleType > zip_traits
static constexpr bool HasFreeFunctionSize
bool operator==(const DenseSetImpl< ValueT, MapTy, ValueInfoT > &LHS, const DenseSetImpl< ValueT, MapTy, ValueInfoT > &RHS)
Equality comparison for DenseSet.
std::remove_reference_t< decltype(*adl_begin(std::declval< RangeT & >()))> ValueOfRange
std::conjunction< std::is_pointer< T >, std::is_trivially_copyable< typename std::iterator_traits< T >::value_type > > sort_trivially_copyable
This is an optimization pass for GlobalISel generic memory operations.
auto drop_begin(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the first N elements excluded.
detail::zippy< detail::zip_shortest, T, U, Args... > zip(T &&t, U &&u, Args &&...args)
zip iterator for two or more iteratable types.
void stable_sort(R &&Range)
auto find(R &&Range, const T &Val)
Provide wrappers to std::find which take ranges instead of having to pass begin/end explicitly.
void fill(R &&Range, T &&Value)
Provide wrappers to std::fill which take ranges instead of having to pass begin/end explicitly.
bool includes(R1 &&Range1, R2 &&Range2)
Provide wrappers to std::includes which take ranges instead of having to pass begin/end explicitly.
auto min_element(R &&Range)
Provide wrappers to std::min_element which take ranges instead of having to pass begin/end explicitly...
UnaryFunction for_each(R &&Range, UnaryFunction F)
Provide wrappers to std::for_each which take ranges instead of having to pass begin/end explicitly.
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
detail::zip_longest_range< T, U, Args... > zip_longest(T &&t, U &&u, Args &&... args)
Iterate over two or more iterators at the same time.
auto size(R &&Range, std::enable_if_t< std::is_base_of< std::random_access_iterator_tag, typename std::iterator_traits< decltype(Range.begin())>::iterator_category >::value, void > *=nullptr)
Get the size of a range.
int(*)(const void *, const void *) get_array_pod_sort_comparator(const T &)
get_array_pod_sort_comparator - This is an internal helper function used to get type deduction of T r...
constexpr bool is_incomplete_v
Detects when type T is incomplete.
detail::zippy< detail::zip_first, T, U, Args... > zip_equal(T &&t, U &&u, Args &&...args)
zip iterator that assumes that all iteratees have the same length.
constexpr auto adl_begin(RangeT &&range) -> decltype(adl_detail::begin_impl(std::forward< RangeT >(range)))
Returns the begin iterator to range using std::begin and function found through Argument-Dependent Lo...
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are tuples (A, B,...
void interleave(ForwardIterator begin, ForwardIterator end, UnaryFunctor each_fn, NullaryFunctor between_fn)
An STL-style algorithm similar to std::for_each that applies a second functor between every pair of e...
auto accumulate(R &&Range, E &&Init)
Wrapper for std::accumulate.
auto partition_point(R &&Range, Predicate P)
Binary search for the first iterator in a range where a predicate is false.
int array_pod_sort_comparator(const void *P1, const void *P2)
Adapt std::less<T> for array_pod_sort.
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
mapped_iterator< ItTy, FuncTy > map_iterator(ItTy I, FuncTy F)
decltype(auto) getSingleElement(ContainerTy &&C)
Asserts that the given container has a single element and returns that element.
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
bool hasNItemsOrLess(IterTy &&Begin, IterTy &&End, unsigned N, Pred &&ShouldBeCounted=[](const decltype(*std::declval< IterTy >()) &) { return true;})
Returns true if the sequence [Begin, End) has N or less items.
void interleaveComma(const Container &c, StreamT &os, UnaryFunctor each_fn)
iterator_range< early_inc_iterator_impl< detail::IterOfRange< RangeT > > > make_early_inc_range(RangeT &&Range)
Make a range that does early increment to allow mutation of the underlying range without disrupting i...
void shuffle(Iterator first, Iterator last, RNG &&g)
constexpr auto adl_end(RangeT &&range) -> decltype(adl_detail::end_impl(std::forward< RangeT >(range)))
Returns the end iterator to range using std::end and functions found through Argument-Dependent Looku...
auto uninitialized_copy(R &&Src, IterTy Dst)
auto unique(Range &&R, Predicate P)
auto binary_search(R &&Range, T &&Value)
Provide wrappers to std::binary_search which take ranges instead of having to pass begin/end explicit...
auto upper_bound(R &&Range, T &&Value)
Provide wrappers to std::upper_bound which take ranges instead of having to pass begin/end explicitly...
OutputIt copy_if(R &&Range, OutputIt Out, UnaryPredicate P)
Provide wrappers to std::copy_if which take ranges instead of having to pass begin/end explicitly.
auto map_range(ContainerTy &&C, FuncTy F)
detail::concat_range< ValueT, RangeTs... > concat(RangeTs &&...Ranges)
Returns a concatenated range across two or more ranges.
constexpr auto adl_rbegin(RangeT &&range) -> decltype(adl_detail::rbegin_impl(std::forward< RangeT >(range)))
Returns the reverse-begin iterator to range using std::rbegin and function found through Argument-Dep...
bool hasNItemsOrMore(IterTy &&Begin, IterTy &&End, unsigned N, Pred &&ShouldBeCounted=[](const decltype(*std::declval< IterTy >()) &) { return true;}, std::enable_if_t< !std::is_base_of< std::random_access_iterator_tag, typename std::iterator_traits< std::remove_reference_t< decltype(Begin)> >::iterator_category >::value, void > *=nullptr)
Return true if the sequence [Begin, End) has N or more items.
void erase(Container &C, ValueType V)
Wrapper function to remove a value from a container:
OutputIt transform(R &&Range, OutputIt d_first, UnaryFunction F)
Wrapper function around std::transform to apply a function to a range and store the result elsewhere.
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
auto mismatch(R1 &&Range1, R2 &&Range2)
Provide wrappers to std::mismatch which take ranges instead of having to pass begin/end explicitly.
auto reverse(ContainerTy &&C)
constexpr size_t range_size(R &&Range)
Returns the size of the Range, i.e., the number of elements.
detail::zippy< detail::zip_first, T, U, Args... > zip_first(T &&t, U &&u, Args &&...args)
zip iterator that, for the sake of efficiency, assumes the first iteratee to be the shortest.
void sort(IteratorTy Start, IteratorTy End)
bool hasNItems(IterTy &&Begin, IterTy &&End, unsigned N, Pred &&ShouldBeCounted=[](const decltype(*std::declval< IterTy >()) &) { return true;}, std::enable_if_t< !std::is_base_of< std::random_access_iterator_tag, typename std::iterator_traits< std::remove_reference_t< decltype(Begin)> >::iterator_category >::value, void > *=nullptr)
Return true if the sequence [Begin, End) has exactly N items.
auto find_if_not(R &&Range, UnaryPredicate P)
bool none_of(R &&Range, UnaryPredicate P)
Provide wrappers to std::none_of which take ranges instead of having to pass begin/end explicitly.
auto make_first_range(ContainerTy &&c)
Given a container of pairs, return a range over the first elements.
constexpr auto adl_size(RangeT &&range) -> decltype(adl_detail::size_impl(std::forward< RangeT >(range)))
Returns the size of range using std::size and functions found through Argument-Dependent Lookup (ADL)...
bool is_sorted(R &&Range, Compare C)
Wrapper function around std::is_sorted to check if elements in a range R are sorted with respect to a...
bool hasSingleElement(ContainerTy &&C)
Returns true if the given container only contains a single element.
iterator_range< filter_iterator< detail::IterOfRange< RangeT >, PredicateT > > make_filter_range(RangeT &&Range, PredicateT Pred)
Convenience function that takes a range of elements and a predicate, and return a new filter_iterator...
std::pair< T *, bool > find_singleton_nested(R &&Range, Predicate P, bool AllowRepeats=false)
Return a pair consisting of the single value in Range that satisfies P(<member of Range> ,...
T * find_singleton(R &&Range, Predicate P, bool AllowRepeats=false)
Return the single value in Range that satisfies P(<member of Range> *, AllowRepeats)->T * returning n...
iterator_range(Container &&) -> iterator_range< llvm::detail::IterOfRange< Container > >
auto drop_end(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the last N elements excluded.
@ First
Helpers to iterate all locations in the MemoryEffectsBase class.
auto remove_if(R &&Range, UnaryPredicate P)
Provide wrappers to std::remove_if which take ranges instead of having to pass begin/end explicitly.
std::disjunction< std::is_same< T, Ts >... > is_one_of
traits class for checking whether type T is one of any of the given types in the variadic list.
auto lower_bound(R &&Range, T &&Value)
Provide wrappers to std::lower_bound which take ranges instead of having to pass begin/end explicitly...
void replace(R &&Range, const T &OldValue, const T &NewValue)
Provide wrappers to std::replace which take ranges instead of having to pass begin/end explicitly.
auto count(R &&Range, const E &Element)
Wrapper function around std::count to count the number of times an element Element occurs in the give...
auto max_element(R &&Range)
Provide wrappers to std::max_element which take ranges instead of having to pass begin/end explicitly...
OutputIt replace_copy_if(R &&Range, OutputIt Out, UnaryPredicate P, const T &NewValue)
Provide wrappers to std::replace_copy_if which take ranges instead of having to pass begin/end explic...
auto to_address(const Ptr &P)
Returns a raw pointer that represents the same address as the argument.
OutputIt copy(R &&Range, OutputIt Out)
auto partition(R &&Range, UnaryPredicate P)
Provide wrappers to std::partition which take ranges instead of having to pass begin/end explicitly.
auto make_second_range(ContainerTy &&c)
Given a container of pairs, return a range over the second elements.
typename detail::detector< void, Op, Args... >::value_t is_detected
Detects if a given trait holds for some set of arguments 'Args'.
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
OutputIt replace_copy(R &&Range, OutputIt Out, const T &OldValue, const T &NewValue)
Provide wrappers to std::replace_copy which take ranges instead of having to pass begin/end explicitl...
auto count_if(R &&Range, UnaryPredicate P)
Wrapper function around std::count_if to count the number of times an element satisfying a given pred...
std::tuple_element_t< I, std::tuple< Ts... > > TypeAtIndex
Find the type at a given index in a list of types.
auto find_if(R &&Range, UnaryPredicate P)
Provide wrappers to std::find_if which take ranges instead of having to pass begin/end explicitly.
void erase_if(Container &C, UnaryPredicate P)
Provide a container algorithm similar to C++ Library Fundamentals v2's erase_if which is equivalent t...
constexpr auto adl_rend(RangeT &&range) -> decltype(adl_detail::rend_impl(std::forward< RangeT >(range)))
Returns the reverse-end iterator to range using std::rend and functions found through Argument-Depend...
void append_values(Container &C, Args &&...Values)
Appends all Values to container C.
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
PointerUnion< const Value *, const PseudoSourceValue * > ValueType
bool all_equal(std::initializer_list< T > Values)
Returns true if all Values in the initializer lists are equal or the list.
void array_pod_sort(IteratorTy Start, IteratorTy End)
array_pod_sort - This sorts an array with the specified start and end extent.
constexpr decltype(auto) makeVisitor(CallableTs &&...Callables)
Returns an opaquely-typed Callable object whose operator() overload set is the sum of the operator() ...
filter_iterator_impl< WrappedIteratorT, PredicateT, detail::fwd_or_bidi_tag< WrappedIteratorT > > filter_iterator
Defines filter_iterator to a suitable specialization of filter_iterator_impl, based on the underlying...
bool equal(L &&LRange, R &&RRange)
Wrapper function around std::equal to detect if pair-wise elements between two ranges are the same.
std::conjunction< std::is_base_of< T, Ts >... > are_base_of
traits class for checking whether type T is a base class for all the given types in the variadic list...
bool all_of_zip(ArgsAndPredicate &&...argsAndPredicate)
Compare two zipped ranges using the provided predicate (as last argument).
constexpr auto addEnumValues(EnumTy1 LHS, EnumTy2 RHS)
Helper which adds two underlying types of enumeration type.
Implement std::hash so that hash_code can be used in STL containers.
Find the first index where a type appears in a list of types.
Determine if all types in Ts are distinct.
Binary functor that adapts to any other binary functor after dereferencing operands.
auto operator()(A &lhs, B &rhs) const
constexpr Visitor(HeadT &&Head, TailTs &&...Tail)
constexpr Visitor(HeadT &&Head)
std::optional< std::remove_const_t< std::remove_reference_t< decltype(*std::declval< Iter >())> > > type
std::tuple< typename ZipLongestItemType< Iters >::type... > type
std::tuple< decltype(*declval< Iters >())... > type
ItType< decltype(adl_begin( std::get< Ns >(declval< const std::tuple< Args... > & >())))... > type
ItType< decltype(adl_begin( std::get< Ns >(declval< std::tuple< Args... > & >())))... > type
Helper to obtain the iterator types for the tuple storage within zippy.
std::tuple< Refs... > range_reference_tuple
decltype(auto) value() const
Returns the value(s) for the current iterator.
static constexpr std::size_t NumValues
friend decltype(auto) get(const enumerator_result &Result)
Returns the value at index I.
static constexpr std::size_t NumRefs
std::tuple< std::size_t, Refs... > value_reference_tuple
friend bool operator==(const enumerator_result &Result, const std::tuple< std::size_t, Ts... > &Other)
std::size_t index() const
Returns the 0-based index of the current position within the original input range(s).
friend std::size_t get(const enumerator_result &Result)
Returns the value at index I. This case covers the index.
enumerator_result(std::size_t Index, Refs &&...Rs)
Tuple-like type for zip_enumerator dereference.
friend bool operator==(const index_iterator &Lhs, const index_iterator &Rhs)
std::ptrdiff_t operator-(const index_iterator &R) const
std::size_t operator*() const
friend bool operator<(const index_iterator &Lhs, const index_iterator &Rhs)
index_iterator & operator-=(std::ptrdiff_t N)
index_iterator & operator+=(std::ptrdiff_t N)
index_iterator(std::size_t Index)
Infinite stream of increasing 0-based size_t indices.
index_iterator begin() const
index_iterator end() const
zip_traits< ZipType, ReferenceTupleType, Iters... > Base
std::index_sequence_for< Iters... > IndexSequence
void tup_inc(std::index_sequence< Ns... >)
zip_common(Iters &&... ts)
bool test_all_equals(const zip_common &other, std::index_sequence< Ns... >) const
std::tuple< Iters... > iterators
value_type operator*() const
typename Base::value_type value_type
bool all_equals(zip_common &other)
Return true if all the iterator are matching other's iterators.
void tup_dec(std::index_sequence< Ns... >)
value_type deref(std::index_sequence< Ns... >) const
Zippy iterator that uses the second iterator for comparisons.
bool operator==(const zip_enumerator &Other) const
bool operator==(const zip_first &other) const
bool operator==(const zip_shortest &other) const
std::tuple_element_t< Index, std::tuple< Args... > > arg_t
The type of an argument to this function.
ReturnType result_t
The result type of this function.
std::tuple_element_t< i, std::tuple< Args... > > arg_t
The type of an argument to this function.
ReturnType result_t
The result type of this function.
This class provides various trait information about a callable object.
Function object to check whether the first component of a container supported by std::get (like std::...
bool operator()(const T &lhs, const T &rhs) const
Function object to check whether the second component of a container supported by std::get (like std:...
bool operator()(const T &lhs, const T &rhs) const
std::add_pointer_t< std::add_const_t< T > > type
std::add_lvalue_reference_t< std::add_const_t< T > > type
Function object to apply a binary function to the first component of a std::pair.
size_t operator()(const std::pair< First, Second > &P) const
Utility type to build an inheritance chain that makes it easy to rank overload candidates.