P4C
The P4 Compiler
All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
range.h
1/*
2Copyright 2013-present Barefoot Networks, Inc.
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15*/
16
17#ifndef LIB_RANGE_H_
18#define LIB_RANGE_H_
19
20#include <iostream>
21
22template <class T>
23class RangeIter {
24 int incr;
25 T cur, fin;
26 explicit RangeIter(T end) : incr(0), cur(end), fin(end) {}
27
28 public:
29 RangeIter(T start, T end)
30 : incr(start <= end ? 1 : -1), cur(start), fin(static_cast<T>(end + incr)) {}
31 RangeIter begin() const { return *this; }
32 RangeIter end() const { return RangeIter(fin); }
33 T operator*() const { return cur; }
34 bool operator==(const RangeIter &a) const { return cur == a.cur; }
35 bool operator!=(const RangeIter &a) const { return cur != a.cur; }
36 RangeIter &operator++() {
37 cur = static_cast<T>(cur + incr);
38 return *this;
39 }
40 template <class U>
41 friend std::ostream &operator<<(std::ostream &, const RangeIter<U> &);
42};
43
44template <class T>
45static inline RangeIter<T> Range(T a, T b) {
46 return RangeIter<T>(a, b);
47}
48template <class T>
49static inline RangeIter<T> Range(std::pair<T, T> p) {
50 return RangeIter<T>(p.first, p.second);
51}
52template <class T>
53static inline RangeIter<T> ReverseRange(std::pair<T, T> p) {
54 return RangeIter<T>(p.second, p.first);
55}
56
57template <class T>
58std::ostream &operator<<(std::ostream &out, const RangeIter<T> &r) {
59 out << r.cur;
60 if (r.cur + r.incr != r.fin) out << ".." << (r.fin - r.incr);
61 return out;
62}
63
64#endif /* LIB_RANGE_H_ */
Definition range.h:23