summaryrefslogtreecommitdiff
path: root/include/llvm/ADT
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2014-03-08 20:11:24 +0000
committerAaron Ballman <aaron@aaronballman.com>2014-03-08 20:11:24 +0000
commit5c47b5806affd10579a02515a474463ecd151472 (patch)
treeceb76c4c39f5332b55619053779a73fc1db3f59b /include/llvm/ADT
parentf089b846991d7c4b897584ac30f61a67c9f4e7a9 (diff)
downloadllvm-5c47b5806affd10579a02515a474463ecd151472.tar.gz
llvm-5c47b5806affd10579a02515a474463ecd151472.tar.bz2
llvm-5c47b5806affd10579a02515a474463ecd151472.tar.xz
Adding range-based STL-like helper APIs. llvm::distance() is the range version of std::distance. llvm::copy is the range version of std::copy.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203354 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT')
-rw-r--r--include/llvm/ADT/iterator_range.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/include/llvm/ADT/iterator_range.h b/include/llvm/ADT/iterator_range.h
index 6248be9007..4474e5dbdf 100644
--- a/include/llvm/ADT/iterator_range.h
+++ b/include/llvm/ADT/iterator_range.h
@@ -23,6 +23,11 @@
namespace llvm {
+template <typename Range>
+struct range_traits {
+ typedef typename Range::difference_type difference_type;
+};
+
/// \brief A range adaptor for a pair of iterators.
///
/// This just wraps two iterators into a range-compatible interface. Nothing
@@ -32,6 +37,10 @@ class iterator_range {
IteratorT begin_iterator, end_iterator;
public:
+ // FIXME: We should be using iterator_traits to determine the
+ // difference_type, but most of our iterators do not expose anything like it.
+ typedef int difference_type;
+
iterator_range() {}
iterator_range(IteratorT begin_iterator, IteratorT end_iterator)
: begin_iterator(std::move(begin_iterator)),
@@ -41,6 +50,19 @@ public:
IteratorT end() const { return end_iterator; }
};
+/// \brief Determine the distance between the end() and begin() iterators of
+/// a range. Analogous to std::distance().
+template <class Range>
+typename range_traits<Range>::difference_type distance(Range R) {
+ return std::distance(R.begin(), R.end());
+}
+
+/// \brief Copies members of a range into the output iterator provided.
+/// Analogous to std::copy.
+template <class Range, class OutputIterator>
+OutputIterator copy(Range In, OutputIterator Result) {
+ return std::copy(In.begin(), In.end(), Result);
+}
}
#endif