//===- iterator_range.h - A range adaptor for iterators ---------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// /// \file /// This provides a very simple, boring adaptor for a begin and end iterator /// into a range type. This should be used to build range views that work well /// with range based for loops and range based constructors. /// /// Note that code here follows more standards-based coding conventions as it /// is mirroring proposed interfaces for standardization. /// //===----------------------------------------------------------------------===// #ifndef LLVM_ADT_ITERATOR_RANGE_H #define LLVM_ADT_ITERATOR_RANGE_H #include "llvm/ADT/ADL.h" #include <type_traits> #include <utility> namespace llvm { template <typename From, typename To, typename = void> struct explicitly_convertible : std::false_type { … }; explicitly_convertible<From, To, std::void_t<decltype(static_cast<To>(std::declval<std::add_rvalue_reference_t<From>>()))>>; /// A range adaptor for a pair of iterators. /// /// This just wraps two iterators into a range-compatible interface. Nothing /// fancy at all. template <typename IteratorT> class iterator_range { … }; template <typename Container> iterator_range(Container &&) -> iterator_range<llvm::detail::IterOfRange<Container>>; /// Convenience function for iterating over sub-ranges. /// /// This provides a bit of syntactic sugar to make using sub-ranges /// in for loops a bit easier. Analogous to std::make_pair(). template <class T> iterator_range<T> make_range(T x, T y) { … } template <typename T> iterator_range<T> make_range(std::pair<T, T> p) { … } } #endif