17#ifndef LLVM_ADT_STLEXTRAS_H
18#define LLVM_ADT_STLEXTRAS_H
26#include "llvm/Config/abi-breaking.h"
34#include <initializer_list>
43#ifdef EXPENSIVE_CHECKS
54 using type = std::add_pointer_t<std::add_const_t<T>>;
58 using type = std::add_lvalue_reference_t<std::add_const_t<T>>;
62template <
class,
template <
class...>
class Op,
class... Args>
struct detector {
65template <
template <
class...>
class Op,
class... Args>
78template <
template <
class...>
class Op,
class... Args>
85template <typename T, bool isClass = std::is_class<T>::value>
89template <
typename ClassType,
typename ReturnType,
typename... Args>
98 template <
size_t Index>
99 using arg_t = std::tuple_element_t<Index, std::tuple<Args...>>;
102template <
typename ClassType,
typename ReturnType,
typename... Args>
106template <
typename ReturnType,
typename... Args>
116 using arg_t = std::tuple_element_t<i, std::tuple<Args...>>;
118template <
typename ReturnType,
typename... Args>
122template <
typename ReturnType,
typename... Args>
128template <
typename T,
typename... Ts>
129using is_one_of = std::disjunction<std::is_same<T, Ts>...>;
133template <
typename T,
typename... Ts>
145template <
typename T,
typename... Us>
147 : std::conjunction<std::negation<is_one_of<T, Us...>>,
148 TypesAreDistinct<Us...>> {};
161template <
typename T,
typename U,
typename... Us>
163 : std::integral_constant<size_t, 1 + FirstIndexOfType<T, Us...>::value> {};
164template <
typename T,
typename... Us>
170template <
size_t I,
typename... Ts>
175template <
typename EnumTy1,
typename EnumTy2,
176 typename UT1 = std::enable_if_t<std::is_enum<EnumTy1>::value,
177 std::underlying_type_t<EnumTy1>>,
178 typename UT2 = std::enable_if_t<std::is_enum<EnumTy2>::value,
179 std::underlying_type_t<EnumTy2>>>
181 return static_cast<UT1
>(
LHS) +
static_cast<UT2
>(
RHS);
201 bool = std::is_function_v<std::remove_pointer_t<remove_cvref_t<T>>>>
203 using value_type = std::remove_reference_t<T>;
204 using reference = value_type &;
205 using const_reference = value_type
const &;
207 std::optional<value_type> Obj;
209 static_assert(!std::is_pointer_v<value_type>,
210 "Pointers to non-functions are not callable.");
222 Obj.emplace(*
Other.Obj);
229 Obj.emplace(std::move(*
Other.Obj));
233 template <
typename... Pn,
234 std::enable_if_t<std::is_invocable_v<
T, Pn...>,
int> = 0>
235 decltype(
auto)
operator()(Pn &&...Params) {
236 return (*Obj)(std::forward<Pn>(Params)...);
239 template <
typename... Pn,
240 std::enable_if_t<std::is_invocable_v<
T const, Pn...>,
int> = 0>
241 decltype(
auto)
operator()(Pn &&...Params)
const {
242 return (*Obj)(std::forward<Pn>(Params)...);
245 bool valid()
const {
return Obj != std::nullopt; }
246 bool reset() {
return Obj = std::nullopt; }
248 operator reference() {
return *Obj; }
249 operator const_reference()
const {
return *Obj; }
255 static constexpr bool IsPtr = std::is_pointer_v<remove_cvref_t<T>>;
257 using StorageT = std::conditional_t<IsPtr, T, std::remove_reference_t<T> *>;
258 using CastT = std::conditional_t<IsPtr, T, T &>;
261 StorageT Func =
nullptr;
264 template <
typename In>
static constexpr auto convertIn(In &&
I) {
265 if constexpr (IsPtr) {
284 !std::is_same_v<remove_cvref_t<FnPtrOrRef>,
Callable>,
int
289 template <
typename... Pn,
290 std::enable_if_t<std::is_invocable_v<
T, Pn...>,
int> = 0>
292 return Func(std::forward<Pn>(Params)...);
295 bool valid()
const {
return Func !=
nullptr; }
298 operator T const &()
const {
299 if constexpr (IsPtr) {
303 static_assert(std::is_reference_v<T>,
304 "Expected a reference to a function.");
317 return B !=
E && std::next(
B) ==
E;
322template <
typename ContainerTy>
330template <
typename T>
auto drop_begin(
T &&RangeOrContainer,
size_t N = 1) {
337template <
typename T>
auto drop_end(
T &&RangeOrContainer,
size_t N = 1) {
339 std::prev(
adl_end(RangeOrContainer),
N));
345template <
typename ItTy,
typename FuncTy,
346 typename ReferenceTy =
347 decltype(std::declval<FuncTy>()(*std::declval<ItTy>()))>
350 mapped_iterator<ItTy, FuncTy>, ItTy,
351 typename std::iterator_traits<ItTy>::iterator_category,
352 std::remove_reference_t<ReferenceTy>,
353 typename std::iterator_traits<ItTy>::difference_type,
354 std::remove_reference_t<ReferenceTy> *, ReferenceTy> {
372template <
class ItTy,
class FuncTy>
377template <
class ContainerTy,
class FuncTy>
387template <
typename DerivedT,
typename ItTy,
typename ReferenceTy>
391 typename std::iterator_traits<ItTy>::iterator_category,
392 std::remove_reference_t<ReferenceTy>,
393 typename std::iterator_traits<ItTy>::difference_type,
394 std::remove_reference_t<ReferenceTy> *, ReferenceTy> {
404 return static_cast<const DerivedT &
>(*this).mapElement(*this->I);
409template <
typename Range>
411 decltype(
adl_rbegin(std::declval<Range &>()));
413template <
typename Range>
420template <
typename ContainerTy> [[nodiscard]]
auto reverse(ContainerTy &&
C) {
444template <
typename WrappedIteratorT,
typename PredicateT,
typename IterTag>
447 filter_iterator_base<WrappedIteratorT, PredicateT, IterTag>,
449 std::common_type_t<IterTag,
450 typename std::iterator_traits<
451 WrappedIteratorT>::iterator_category>> {
459 while (this->I !=
End && !
Pred(*this->I))
475 using BaseT::operator++;
483 decltype(
auto)
operator*()
const {
484 assert(BaseT::wrapped() !=
End &&
"Cannot dereference end iterator!");
485 return BaseT::operator*();
488 decltype(
auto) operator->()
const {
489 assert(BaseT::wrapped() !=
End &&
"Cannot dereference end iterator!");
490 return BaseT::operator->();
496 typename IterTag = std::forward_iterator_tag>
508template <
typename WrappedIteratorT,
typename PredicateT>
510 std::bidirectional_iterator_tag>
512 std::bidirectional_iterator_tag> {
515 void findPrevValid() {
516 while (!this->
Pred(*this->I))
521 using BaseT::operator--;
540template <
typename IterT>
542 std::is_base_of_v<std::bidirectional_iterator_tag,
543 typename std::iterator_traits<IterT>::iterator_category>,
544 std::bidirectional_iterator_tag, std::forward_iterator_tag>;
550template <
typename WrappedIteratorT,
typename PredicateT>
562template <
typename RangeT,
typename PredicateT>
565 using FilterIteratorT =
569 return make_range(FilterIteratorT(
B,
E, Pred), FilterIteratorT(
E,
E, Pred));
589template <
typename WrappedIteratorT>
592 WrappedIteratorT, std::input_iterator_tag> {
595 using PointerT =
typename std::iterator_traits<WrappedIteratorT>::pointer;
598#if LLVM_ENABLE_ABI_BREAKING_CHECKS
599 bool IsEarlyIncremented =
false;
605 using BaseT::operator*;
606 decltype(*std::declval<WrappedIteratorT>())
operator*() {
607#if LLVM_ENABLE_ABI_BREAKING_CHECKS
608 assert(!IsEarlyIncremented &&
"Cannot dereference twice!");
609 IsEarlyIncremented =
true;
614 using BaseT::operator++;
616#if LLVM_ENABLE_ABI_BREAKING_CHECKS
617 assert(IsEarlyIncremented &&
"Cannot increment before dereferencing!");
618 IsEarlyIncremented =
false;
625#if LLVM_ENABLE_ABI_BREAKING_CHECKS
626 assert(!
LHS.IsEarlyIncremented &&
"Cannot compare after dereferencing!");
628 return (
const BaseT &)
LHS == (
const BaseT &)
RHS;
644template <
typename RangeT>
647 using EarlyIncIteratorT =
654template <
typename R,
typename UnaryPredicate>
655bool all_of(R &&range, UnaryPredicate
P);
657template <
typename R,
typename UnaryPredicate>
658bool any_of(R &&range, UnaryPredicate
P);
660template <
typename T>
bool all_equal(std::initializer_list<T> Values);
671 using type = std::tuple<decltype(*declval<Iters>())...>;
674template <
typename ZipType,
typename ReferenceTupleType,
typename... Iters>
678 std::bidirectional_iterator_tag,
679 typename std::iterator_traits<Iters>::iterator_category...>,
682 typename std::iterator_traits<
683 std::tuple_element_t<0, std::tuple<Iters...>>>::difference_type,
688 ReferenceTupleType *, ReferenceTupleType>;
690template <
typename ZipType,
typename ReferenceTupleType,
typename... Iters>
703 template <
size_t... Ns>
void tup_inc(std::index_sequence<Ns...>) {
707 template <
size_t... Ns>
void tup_dec(std::index_sequence<Ns...>) {
711 template <
size_t... Ns>
713 std::index_sequence<Ns...>)
const {
725 return static_cast<ZipType &
>(*this);
730 "All inner iterators must be at least bidirectional.");
732 return static_cast<ZipType &
>(*this);
741template <
typename... Iters>
743 typename ZipTupleType<Iters...>::type, Iters...> {
752template <
typename... Iters>
754 :
zip_common<zip_shortest<Iters...>, typename ZipTupleType<Iters...>::type,
760 return any_iterator_equals(other, std::index_sequence_for<Iters...>{});
764 template <
size_t... Ns>
766 std::index_sequence<Ns...>)
const {
773template <
template <
typename...>
class ItType,
typename TupleStorageType,
774 typename IndexSequence>
778template <
template <
typename...>
class ItType,
typename... Args,
781 std::index_sequence<Ns...>> {
783 std::get<Ns>(declval<std::tuple<Args...> &>())))...>;
787template <
template <
typename...>
class ItType,
typename... Args,
790 std::index_sequence<Ns...>> {
792 std::get<Ns>(declval<
const std::tuple<Args...> &>())))...>;
795template <
template <
typename...>
class ItType,
typename... Args>
class zippy {
797 std::tuple<Args...> storage;
798 using IndexSequence = std::index_sequence_for<Args...>;
802 IndexSequence>::type;
805 IndexSequence>::type;
821 template <
size_t... Ns>
825 template <
size_t... Ns>
iterator begin_impl(std::index_sequence<Ns...>) {
829 template <
size_t... Ns>
833 template <
size_t... Ns>
iterator end_impl(std::index_sequence<Ns...>) {
842template <
typename T,
typename U,
typename...
Args>
846 std::forward<T>(t), std::forward<U>(u), std::forward<Args>(
args)...);
852template <
typename T,
typename U,
typename... Args>
856 "Iteratees do not have equal length");
858 std::forward<T>(t), std::forward<U>(u), std::forward<Args>(
args)...);
865template <
typename T,
typename U,
typename... Args>
869 "First iteratee is not the shortest");
872 std::forward<T>(t), std::forward<U>(u), std::forward<Args>(
args)...);
876template <
typename Iter>
883template <
typename Iter>
885 std::remove_const_t<std::remove_reference_t<
decltype(*I)>>> {
892 using type = std::optional<std::remove_const_t<
893 std::remove_reference_t<decltype(*std::declval<Iter>())>>>;
897 using type = std::tuple<typename ZipLongestItemType<Iters>::type...>;
900template <
typename... Iters>
903 zip_longest_iterator<Iters...>,
905 std::forward_iterator_tag,
906 typename std::iterator_traits<Iters>::iterator_category...>,
907 typename ZipLongestTupleType<Iters...>::type,
908 typename std::iterator_traits<
909 std::tuple_element_t<0, std::tuple<Iters...>>>::difference_type,
910 typename ZipLongestTupleType<Iters...>::type *,
911 typename ZipLongestTupleType<Iters...>::type> {
916 std::tuple<Iters...> iterators;
917 std::tuple<Iters...> end_iterators;
919 template <
size_t... Ns>
921 std::index_sequence<Ns...>)
const {
922 return ((std::get<Ns>(this->iterators) != std::get<Ns>(other.iterators)) ||
926 template <
size_t... Ns> value_type
deref(std::index_sequence<Ns...>)
const {
928 deref_or_none(std::get<Ns>(iterators), std::get<Ns>(end_iterators))...);
931 template <
size_t... Ns>
932 decltype(iterators) tup_inc(std::index_sequence<Ns...>)
const {
933 return std::tuple<Iters...>(
934 next_or_end(std::get<Ns>(iterators), std::get<Ns>(end_iterators))...);
939 : iterators(
std::forward<Iters>(ts.first)...),
940 end_iterators(
std::forward<Iters>(ts.second)...) {}
943 return deref(std::index_sequence_for<Iters...>{});
947 iterators = tup_inc(std::index_sequence_for<Iters...>{});
952 return !
test(other, std::index_sequence_for<Iters...>{});
967 std::tuple<Args...> ts;
969 template <
size_t... Ns>
970 iterator begin_impl(std::index_sequence<Ns...>)
const {
972 adl_end(std::get<Ns>(ts)))...);
975 template <
size_t... Ns>
iterator end_impl(std::index_sequence<Ns...>)
const {
977 adl_end(std::get<Ns>(ts)))...);
984 return begin_impl(std::index_sequence_for<Args...>{});
986 iterator end()
const {
return end_impl(std::index_sequence_for<Args...>{}); }
993template <
typename T,
typename U,
typename... Args>
997 std::forward<T>(t), std::forward<U>(u), std::forward<Args>(
args)...);
1010template <
typename ValueT,
typename... IterTs>
1013 std::forward_iterator_tag, ValueT> {
1014 using BaseT =
typename concat_iterator::iterator_facade_base;
1016 static constexpr bool ReturnsByValue =
1017 !(std::is_reference_v<decltype(*std::declval<IterTs>())> && ...);
1019 using reference_type =
1020 typename std::conditional_t<ReturnsByValue, ValueT, ValueT &>;
1023 typename std::conditional_t<ReturnsByValue, std::optional<ValueT>,
1032 std::tuple<IterTs...> Begins;
1033 std::tuple<IterTs...> Ends;
1039 template <
size_t Index>
bool incrementHelper() {
1040 auto &Begin = std::get<Index>(Begins);
1041 auto &End = std::get<Index>(Ends);
1052 template <
size_t... Ns>
void increment(std::index_sequence<Ns...>) {
1055 &concat_iterator::incrementHelper<Ns>...};
1058 for (
auto &IncrementHelperFn : IncrementHelperFns)
1059 if ((this->*IncrementHelperFn)())
1068 template <
size_t Index> handle_type getHelper()
const {
1069 auto &Begin = std::get<Index>(Begins);
1070 auto &End = std::get<Index>(Ends);
1074 if constexpr (ReturnsByValue)
1084 template <
size_t... Ns> reference_type get(std::index_sequence<Ns...>)
const {
1087 const = {&concat_iterator::getHelper<Ns>...};
1090 for (
auto &GetHelperFn : GetHelperFns)
1091 if (
auto P = (this->*GetHelperFn)())
1094 llvm_unreachable(
"Attempted to get a pointer from an end concat iterator!");
1102 template <
typename... RangeTs>
1106 using BaseT::operator++;
1109 increment(std::index_sequence_for<IterTs...>());
1114 return get(std::index_sequence_for<IterTs...>());
1118 return Begins ==
RHS.Begins && Ends ==
RHS.Ends;
1133 decltype(
adl_begin(std::declval<RangeTs &>()))...>;
1136 std::tuple<RangeTs...> Ranges;
1138 template <
size_t... Ns>
iterator begin_impl(std::index_sequence<Ns...>) {
1139 return iterator(std::get<Ns>(Ranges)...);
1141 template <
size_t... Ns>
1142 iterator begin_impl(std::index_sequence<Ns...>)
const {
1143 return iterator(std::get<Ns>(Ranges)...);
1145 template <
size_t... Ns>
iterator end_impl(std::index_sequence<Ns...>) {
1147 adl_end(std::get<Ns>(Ranges)))...);
1149 template <
size_t... Ns> iterator end_impl(std::index_sequence<Ns...>)
const {
1151 adl_end(std::get<Ns>(Ranges)))...);
1156 : Ranges(
std::forward<RangeTs>(Ranges)...) {}
1159 return begin_impl(std::index_sequence_for<RangeTs...>{});
1162 return begin_impl(std::index_sequence_for<RangeTs...>{});
1165 return end_impl(std::index_sequence_for<RangeTs...>{});
1168 return end_impl(std::index_sequence_for<RangeTs...>{});
1178template <
typename ValueT,
typename... RangeTs>
1179[[nodiscard]] detail::concat_range<
ValueT, RangeTs...>
1181 static_assert(
sizeof...(RangeTs) > 1,
1182 "Need more than one range to concatenate!");
1184 std::forward<RangeTs>(Ranges)...);
1189template <
typename DerivedT,
typename BaseT,
typename T,
1190 typename PointerT =
T *,
typename ReferenceT =
T &>
1193 std::random_access_iterator_tag, T,
1194 std::ptrdiff_t, PointerT, ReferenceT> {
1210 this->
index += offset;
1211 return static_cast<DerivedT &
>(*this);
1214 this->
index -= offset;
1215 return static_cast<DerivedT &
>(*this);
1242template <
typename DerivedT,
typename BaseT,
typename T,
1243 typename PointerT =
T *,
typename ReferenceT =
T &>
1250 PointerT, ReferenceT> {
1254 return DerivedT::dereference_iterator(this->
getBase(), this->
getIndex());
1277 assert(Index <
size() &&
"invalid index for value range");
1278 return DerivedT::dereference_iterator(
base,
static_cast<ptrdiff_t>(Index));
1286 return (*
this)[
size() - 1];
1296 DerivedT
slice(
size_t n,
size_t m)
const {
1297 assert(n + m <=
size() &&
"invalid size specifiers");
1298 return DerivedT(offset_base(
base, n), m);
1303 assert(
size() >= n &&
"Dropping more elements than exist");
1308 assert(
size() >= n &&
"Dropping more elements than exist");
1315 :
static_cast<const DerivedT &
>(*this);
1321 :
static_cast<const DerivedT &
>(*this);
1325 template <
typename RangeT,
typename = std::enable_if_t<std::is_constructible<
1327 operator RangeT()
const {
1336 static BaseT offset_base(
const BaseT &
base,
size_t n) {
1337 return n == 0 ?
base : DerivedT::offset_base(
base, n);
1353template <
typename OtherT,
typename DerivedT,
typename BaseT,
typename T,
1354 typename PointerT,
typename ReferenceT>
1357 const OtherT &rhs) {
1358 return std::equal(lhs.begin(), lhs.end(), rhs.begin(), rhs.end());
1361template <
typename OtherT,
typename DerivedT,
typename BaseT,
typename T,
1362 typename PointerT,
typename ReferenceT>
1365 const OtherT &rhs) {
1366 return !(lhs == rhs);
1377template <
typename DerivedT,
typename BaseT,
typename T,
1378 typename PointerT =
T *,
typename ReferenceT =
T &>
1381 DerivedT, std::pair<BaseT, ptrdiff_t>, T, PointerT, ReferenceT> {
1385 DerivedT,
std::pair<BaseT,
ptrdiff_t>,
T, PointerT, ReferenceT>(
1388 DerivedT, std::pair<BaseT, ptrdiff_t>,
T, PointerT,
1398 static std::pair<BaseT, ptrdiff_t>
1402 return std::make_pair(
base.first,
base.second + index);
1408 return DerivedT::dereference(
base.first,
base.second + index);
1421 using type = std::conditional_t<std::is_reference<EltTy>::value, FirstTy,
1422 std::remove_reference_t<FirstTy>>;
1431 EltTy,
decltype((elt.first))>::type {
1440 std::forward<ContainerTy>(c),
1443 decltype((elt.second))>::type {
1457 return std::less<>()(std::get<0>(lhs), std::get<0>(rhs));
1466 return std::less<>()(std::get<1>(lhs), std::get<1>(rhs));
1472template<
typename FuncTy>
1476 template <
typename T>
1477 decltype(
auto)
operator()(
const T &lhs,
const T &rhs)
const {
1478 return func(lhs.first, rhs.first);
1490template <
typename HeadT,
typename... TailTs>
1496 using Visitor<TailTs...>::operator();
1534template <
typename... CallableTs>
1536 return detail::Visitor<CallableTs...>(std::forward<CallableTs>(Callables)...);
1545template <
class Iterator,
class RNG>
1550 typename std::iterator_traits<Iterator>::difference_type difference_type;
1551 for (
auto size = last - first;
size > 1; ++first, (void)--
size) {
1552 difference_type offset =
g() %
size;
1555 if (offset != difference_type(0))
1556 std::iter_swap(first, first + offset);
1563 if (std::less<T>()(*
reinterpret_cast<const T*
>(P1),
1564 *
reinterpret_cast<const T*
>(P2)))
1566 if (std::less<T>()(*
reinterpret_cast<const T*
>(P2),
1567 *
reinterpret_cast<const T*
>(P1)))
1576 (
const void*,
const void*) {
1580#ifdef EXPENSIVE_CHECKS
1583inline unsigned presortShuffleEntropy() {
1584 static unsigned Result(std::random_device{}());
1588template <
class IteratorTy>
1589inline void presortShuffle(IteratorTy Start, IteratorTy End) {
1590 std::mt19937 Generator(presortShuffleEntropy());
1611template<
class IteratorTy>
1615 auto NElts = End - Start;
1616 if (NElts <= 1)
return;
1617#ifdef EXPENSIVE_CHECKS
1618 detail::presortShuffle<IteratorTy>(Start, End);
1623template <
class IteratorTy>
1625 IteratorTy Start, IteratorTy End,
1627 const typename std::iterator_traits<IteratorTy>::value_type *,
1628 const typename std::iterator_traits<IteratorTy>::value_type *)) {
1631 auto NElts = End - Start;
1632 if (NElts <= 1)
return;
1633#ifdef EXPENSIVE_CHECKS
1634 detail::presortShuffle<IteratorTy>(Start, End);
1636 qsort(&*Start, NElts,
sizeof(*Start),
1637 reinterpret_cast<int (*)(
const void *,
const void *)
>(Compare));
1641template <
typename T>
1646 std::is_trivially_copyable<typename std::iterator_traits<T>::value_type>>;
1651template <
typename IteratorTy>
1652inline void sort(IteratorTy Start, IteratorTy End) {
1658#ifdef EXPENSIVE_CHECKS
1659 detail::presortShuffle<IteratorTy>(Start, End);
1661 std::sort(Start, End);
1665template <
typename Container>
inline void sort(Container &&
C) {
1669template <
typename IteratorTy,
typename Compare>
1670inline void sort(IteratorTy Start, IteratorTy End, Compare Comp) {
1671#ifdef EXPENSIVE_CHECKS
1672 detail::presortShuffle<IteratorTy>(Start, End);
1674 std::sort(Start, End, Comp);
1677template <
typename Container,
typename Compare>
1678inline void sort(Container &&
C, Compare Comp) {
1684template <
typename R>
1687 std::is_base_of<std::random_access_iterator_tag,
1688 typename std::iterator_traits<
decltype(
1689 Range.begin())>::iterator_category>::value,
1690 void> * =
nullptr) {
1691 return std::distance(
Range.begin(),
Range.end());
1695template <
typename Range>
1697 decltype(
adl_size(std::declval<Range &>()));
1699template <
typename Range>
1719template <
typename R,
typename UnaryFunction>
1726template <
typename R,
typename UnaryPredicate>
1733template <
typename R,
typename UnaryPredicate>
1740template <
typename R,
typename UnaryPredicate>
1753template <
typename R,
typename T>
auto find(R &&
Range,
const T &Val) {
1759template <
typename R,
typename UnaryPredicate>
1764template <
typename R,
typename UnaryPredicate>
1771template <
typename R,
typename UnaryPredicate>
1778template <
typename R,
typename OutputIt,
typename UnaryPredicate>
1788template <
typename T,
typename R,
typename Predicate>
1792 if (
T *PRC =
P(
A, AllowRepeats)) {
1794 if (!AllowRepeats || PRC != RC)
1813template <
typename T,
typename R,
typename Predicate>
1815 bool AllowRepeats =
false) {
1818 std::pair<T *, bool> PRC =
P(
A, AllowRepeats);
1820 assert(PRC.first ==
nullptr &&
1821 "Inconsistent return values in find_singleton_nested.");
1826 if (!AllowRepeats || PRC.first != RC)
1827 return {
nullptr,
true};
1836template <
typename R,
typename OutputIt>
1843template <
typename R,
typename OutputIt,
typename UnaryPredicate,
typename T>
1845 const T &NewValue) {
1852template <
typename R,
typename OutputIt,
typename T>
1854 const T &NewValue) {
1861template <
typename R,
typename T>
1868template <
typename R,
typename OutputIt>
1874template <
typename Range,
typename Element>
1876 decltype(std::declval<Range &>().contains(std::declval<const Element &>()));
1878template <
typename Range,
typename Element>
1882template <
typename Range,
typename Element>
1884 decltype(std::declval<Range &>().find(std::declval<const Element &>()) !=
1885 std::declval<Range &>().end());
1887template <
typename Range,
typename Element>
1898template <
typename R,
typename E>
1901 return Range.contains(Element);
1911template <
typename T,
typename E>
1914 for (
const T &V : Set)
1936template <
typename R1,
typename R2>
bool includes(R1 &&Range1,
R2 &&Range2) {
1937 assert(
is_sorted(Range1) &&
"Range1 must be sorted in non-descending order");
1938 assert(
is_sorted(Range2) &&
"Range2 must be sorted in non-descending order");
1946template <
typename R1,
typename R2,
typename Compare>
1951 adl_end(Range2), std::forward<Compare>(
C));
1956template <
typename R,
typename E>
auto count(R &&
Range,
const E &Element) {
1962template <
typename R,
typename UnaryPredicate>
1969template <
typename R,
typename OutputIt,
typename UnaryFunction>
1976template <
typename R,
typename UnaryPredicate>
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);
2011 std::forward<T>(
Value));
2014template <
typename R,
typename T,
typename Compare>
2017 std::forward<T>(
Value),
C);
2049template <
typename R1,
typename R2>
auto mismatch(R1 &&Range1,
R2 &&Range2) {
2054template <
typename R,
typename IterTy>
2059template <
typename R>
2064template <
typename R,
typename Compare>
2071template <
typename R,
typename Predicate,
2072 typename Val =
decltype(*
adl_begin(std::declval<R>()))>
2077template<
typename Range,
typename Predicate>
2090template <
typename L,
typename R>
bool equal(L &&LRange, R &&RRange) {
2095template <
typename L,
typename R,
typename BinaryPredicate>
2096bool equal(L &&LRange, R &&RRange, BinaryPredicate
P) {
2105 return Begin == End || std::equal(std::next(Begin), End, Begin);
2110template <
typename T>
bool all_equal(std::initializer_list<T> Values) {
2121template <
typename Container,
typename UnaryPredicate>
2129template <
typename Container,
typename ValueType>
2131 C.erase(std::remove(
C.begin(),
C.end(), V),
C.end());
2137template <
typename Container,
typename Range>
2143template <
typename Container,
typename... Args>
2147 ((void)
C.insert(
C.end(), std::forward<Args>(Values)), ...);
2152template <
typename Container,
typename RandomAccessIterator>
2153void replace(Container &Cont,
typename Container::iterator ContIt,
2154 typename Container::iterator ContEnd, RandomAccessIterator ValIt,
2155 RandomAccessIterator ValEnd) {
2157 if (ValIt == ValEnd) {
2158 Cont.erase(ContIt, ContEnd);
2161 if (ContIt == ContEnd) {
2162 Cont.insert(ContIt, ValIt, ValEnd);
2173template <
typename Container,
typename Range = std::initializer_list<
2174 typename Container::value_type>>
2175void replace(Container &Cont,
typename Container::iterator ContIt,
2176 typename Container::iterator ContEnd,
Range &&R) {
2190template <
typename ForwardIterator,
typename UnaryFunctor,
2191 typename NullaryFunctor,
2192 typename = std::enable_if_t<
2193 !std::is_constructible<StringRef, UnaryFunctor>::value &&
2194 !std::is_constructible<StringRef, NullaryFunctor>::value>>
2195inline void interleave(ForwardIterator begin, ForwardIterator end,
2196 UnaryFunctor each_fn, NullaryFunctor between_fn) {
2201 for (; begin != end; ++begin) {
2207template <
typename Container,
typename UnaryFunctor,
typename NullaryFunctor,
2208 typename = std::enable_if_t<
2209 !std::is_constructible<StringRef, UnaryFunctor>::value &&
2210 !std::is_constructible<StringRef, NullaryFunctor>::value>>
2212 NullaryFunctor between_fn) {
2217template <
typename Container,
typename UnaryFunctor,
typename StreamT,
2219inline void interleave(
const Container &c, StreamT &os, UnaryFunctor each_fn,
2223template <
typename Container,
typename StreamT,
2228 c, os, [&](
const T &a) { os << a; }, separator);
2231template <
typename Container,
typename UnaryFunctor,
typename StreamT,
2234 UnaryFunctor each_fn) {
2237template <
typename Container,
typename StreamT,
2253template<
typename First,
typename Second>
2256 return std::hash<First>()(
P.first) * 31 + std::hash<Second>()(
P.second);
2271 return func(*lhs, *rhs);
2280template <
typename... Iters>
2294template <
typename... Iters>
2296 EnumeratorTupleType<Iters...>, Iters...> {
2297 static_assert(
sizeof...(Iters) >= 2,
"Expected at least two iteratees");
2302 return std::get<1>(this->
iterators) == std::get<1>(
Other.iterators);
2307 static constexpr std::size_t
NumRefs =
sizeof...(Refs);
2319 : Idx(Index), Storage(
std::forward<Refs>(Rs)...) {}
2323 std::size_t
index()
const {
return Idx; }
2329 return std::get<0>(Storage);
2335 template <std::
size_t I,
typename = std::enable_if_t<I == 0>>
2342 template <std::
size_t I,
typename = std::enable_if_t<I != 0>>
2347 return std::get<
I - 1>(Result.Storage);
2350 template <
typename... Ts>
2352 const std::tuple<std::size_t, Ts...> &
Other) {
2353 static_assert(
NumRefs ==
sizeof...(Ts),
"Size mismatch");
2354 if (Result.Idx != std::get<0>(
Other))
2356 return Result.is_value_equal(
Other, std::make_index_sequence<NumRefs>{});
2360 template <
typename Tuple, std::size_t... Idx>
2361 bool is_value_equal(
const Tuple &
Other, std::index_sequence<Idx...>)
const {
2362 return ((std::get<Idx>(Storage) == std::get<Idx + 1>(
Other)) && ...);
2373 mutable range_reference_tuple Storage;
2378 std::random_access_iterator_tag, std::size_t> {
2392 return Index - R.Index;
2403 return Lhs.Index == Rhs.Index;
2407 return Lhs.Index < Rhs.Index;
2432 index_range(std::size_t Begin, std::size_t End) : Begin(Begin), End(End) {}
2473template <
typename FirstRange,
typename... RestRanges>
2475 if constexpr (
sizeof...(Rest) != 0) {
2484 FirstRange, RestRanges...>;
2486 std::forward<RestRanges>(Rest)...);
2491template <
typename Predicate,
typename... Args>
2494 auto it = z.begin();
2497 if (!std::apply([&](
auto &&...
args) {
return P(
args...); }, *it))
2501 return it.all_equals(end);
2506template <
typename... ArgsThenPredicate,
size_t... InputIndexes>
2508 std::tuple<ArgsThenPredicate...> argsThenPredicate,
2509 std::index_sequence<InputIndexes...>) {
2510 auto constexpr OutputIndex =
2511 std::tuple_size<
decltype(argsThenPredicate)>
::value - 1;
2513 std::get<InputIndexes>(argsThenPredicate)...);
2521template <
typename... ArgsAndPredicate>
2524 std::forward_as_tuple(argsAndPredicate...),
2525 std::make_index_sequence<
sizeof...(argsAndPredicate) - 1>{});
2531template <
typename IterTy,
2532 typename Pred =
bool (*)(
const decltype(*std::declval<IterTy>()) &)>
2534 IterTy &&Begin, IterTy &&End,
unsigned N,
2535 Pred &&ShouldBeCounted =
2536 [](
const decltype(*std::declval<IterTy>()) &) {
return true; },
2538 !std::is_base_of<std::random_access_iterator_tag,
2539 typename std::iterator_traits<std::remove_reference_t<
2540 decltype(Begin)>>::iterator_category>::value,
2541 void> * =
nullptr) {
2542 for (;
N; ++Begin) {
2545 N -= ShouldBeCounted(*Begin);
2547 for (; Begin != End; ++Begin)
2548 if (ShouldBeCounted(*Begin))
2556template <
typename IterTy,
2557 typename Pred = bool (*)(
const decltype(*std::declval<IterTy>()) &)>
2559 IterTy &&Begin, IterTy &&End,
unsigned N,
2560 Pred &&ShouldBeCounted =
2561 [](
const decltype(*std::declval<IterTy>()) &) {
return true; },
2563 !std::is_base_of<std::random_access_iterator_tag,
2564 typename std::iterator_traits<std::remove_reference_t<
2565 decltype(Begin)>>::iterator_category>::value,
2566 void> * =
nullptr) {
2567 for (;
N; ++Begin) {
2570 N -= ShouldBeCounted(*Begin);
2577template <
typename IterTy,
2578 typename Pred = bool (*)(
const decltype(*std::declval<IterTy>()) &)>
2580 IterTy &&Begin, IterTy &&End,
unsigned N,
2581 Pred &&ShouldBeCounted = [](
const decltype(*std::declval<IterTy>()) &) {
2584 assert(
N != std::numeric_limits<unsigned>::max());
2589template <
typename ContainerTy>
bool hasNItems(ContainerTy &&
C,
unsigned N) {
2594template <
typename ContainerTy>
2600template <
typename ContainerTy>
2622template <
typename T>
2628template <
typename... Refs>
2629struct tuple_size<
llvm::detail::enumerator_result<Refs...>>
2630 : std::integral_constant<std::size_t, sizeof...(Refs)> {};
2632template <std::size_t
I,
typename... Refs>
2633struct tuple_element<
I,
llvm::detail::enumerator_result<Refs...>>
2634 : std::tuple_element<I, std::tuple<Refs...>> {};
2636template <std::size_t
I,
typename... Refs>
2637struct tuple_element<
I,
const llvm::detail::enumerator_result<Refs...>>
2638 : 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 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...
DWARFExpression::Operation Op
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.