aboutsummaryrefslogtreecommitdiffstats
path: root/util/generic/xrange.h
blob: c28aa8aff27fb7b6563ec651dca996a4dfff4fec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
#pragma once

#include "typetraits.h"
#include "utility.h"
#include <util/system/yassert.h>
#include <iterator>

/** @file
 * Some similar for python xrange(): https://docs.python.org/2/library/functions.html#xrange
 * Discussion: https://clubs.at.yandex-team.ru/arcadia/6124
 *
 * Example usage:
 *  for (auto i: xrange(MyVector.size())) { // instead for (size_t i = 0; i < MyVector.size(); ++i)
 *      DoSomething(i, MyVector[i]);
 *  }
 *
 * TVector<int> arithmeticSeq = xrange(10); // instead: TVector<int> arithmeticSeq; for(size_t i = 0; i < 10; ++i) { arithmeticSeq.push_back(i); }
 *
 */

namespace NPrivate {
    template <typename T>
    class TSimpleXRange {
        using TDiff = decltype(T() - T());

    public:
        constexpr TSimpleXRange(T start, T finish) noexcept
            : Start(start)
            , Finish(Max(start, finish))
        {
        }

        class TIterator {
        public:
            using value_type = T;
            using difference_type = TDiff;
            using pointer = const T*;
            using reference = const T&;
            using iterator_category = std::random_access_iterator_tag;

            constexpr TIterator(T value) noexcept
                : Value(value)
            {
            }

            constexpr T operator*() const noexcept {
                return Value;
            }

            constexpr bool operator!=(const TIterator& other) const noexcept {
                return Value != other.Value;
            }

            constexpr bool operator==(const TIterator& other) const noexcept {
                return Value == other.Value;
            }

            TIterator& operator++() noexcept {
                ++Value;
                return *this;
            }

            TIterator& operator--() noexcept {
                --Value;
                return *this;
            }

            constexpr TDiff operator-(const TIterator& b) const noexcept {
                return Value - b.Value;
            }

            template <typename IntType>
            constexpr TIterator operator+(const IntType& b) const noexcept {
                return TIterator(Value + b);
            }

            template <typename IntType>
            TIterator& operator+=(const IntType& b) noexcept {
                Value += b;
                return *this;
            }

            template <typename IntType>
            constexpr TIterator operator-(const IntType& b) const noexcept {
                return TIterator(Value - b);
            }

            template <typename IntType>
            TIterator& operator-=(const IntType& b) noexcept {
                Value -= b;
                return *this;
            }

            constexpr bool operator<(const TIterator& b) const noexcept {
                return Value < b.Value;
            }

        private:
            T Value;
        };

        using value_type = T;
        using iterator = TIterator;
        using const_iterator = TIterator;

        constexpr TIterator begin() const noexcept {
            return TIterator(Start);
        }

        constexpr TIterator end() const noexcept {
            return TIterator(Finish);
        }

        constexpr T size() const noexcept {
            return Finish - Start;
        }

        template <class Container>
        operator Container() const {
            return Container(begin(), end());
        }

    private:
        T Start;
        T Finish;
    };

    template <typename T>
    class TSteppedXRange {
        using TDiff = decltype(T() - T());

    public:
        constexpr TSteppedXRange(T start, T finish, TDiff step) noexcept
            : Start_(start)
            , Step_(step)
            , Finish_(CalcRealFinish(Start_, finish, Step_))
        {
            static_assert(std::is_integral<T>::value || std::is_pointer<T>::value, "T should be integral type or pointer");
        }

        class TIterator {
        public:
            using value_type = T;
            using difference_type = TDiff;
            using pointer = const T*;
            using reference = const T&;
            using iterator_category = std::random_access_iterator_tag;

            constexpr TIterator(T value, const TSteppedXRange& parent) noexcept
                : Value_(value)
                , Parent_(&parent)
            {
            }

            constexpr T operator*() const noexcept {
                return Value_;
            }

            constexpr bool operator!=(const TIterator& other) const noexcept {
                return Value_ != other.Value_;
            }

            constexpr bool operator==(const TIterator& other) const noexcept {
                return Value_ == other.Value_;
            }

            TIterator& operator++() noexcept {
                Value_ += Parent_->Step_;
                return *this;
            }

            TIterator& operator--() noexcept {
                Value_ -= Parent_->Step_;
                return *this;
            }

            constexpr TDiff operator-(const TIterator& b) const noexcept {
                return (Value_ - b.Value_) / Parent_->Step_;
            }

            template <typename IntType>
            constexpr TIterator operator+(const IntType& b) const noexcept {
                return TIterator(*this) += b;
            }

            template <typename IntType>
            TIterator& operator+=(const IntType& b) noexcept {
                Value_ += b * Parent_->Step_;
                return *this;
            }

            template <typename IntType>
            constexpr TIterator operator-(const IntType& b) const noexcept {
                return TIterator(*this) -= b;
            }

            template <typename IntType>
            TIterator& operator-=(const IntType& b) noexcept {
                Value_ -= b * Parent_->Step_;
                return *this;
            }

        private:
            T Value_;
            const TSteppedXRange* Parent_;
        };

        using value_type = T;
        using iterator = TIterator;
        using const_iterator = TIterator;

        constexpr TIterator begin() const noexcept {
            return TIterator(Start_, *this);
        }

        constexpr TIterator end() const noexcept {
            return TIterator(Finish_, *this);
        }

        static T CalcRealFinish(T start, T expFinish, TDiff step) {
            Y_ASSERT(step != 0);
            if (step > 0) {
                if (expFinish > start) {
                    return start + step * ((expFinish - 1 - start) / step + 1);
                }
                return start;
            }
            return start - TSteppedXRange<TDiff>::CalcRealFinish(0, start - expFinish, -step);
        }

        constexpr T size() const noexcept {
            return (Finish_ - Start_) / Step_;
        }

        template <class Container>
        operator Container() const {
            return Container(begin(), end());
        }

    private:
        const T Start_;
        const TDiff Step_;
        const T Finish_;
    };

} // namespace NPrivate

/**
 * generate arithmetic progression that starts at start with certain step and stop at finish (not including)
 *
 * @param step must be non-zero
 */
template <typename T>
constexpr ::NPrivate::TSteppedXRange<T> xrange(T start, T finish, decltype(T() - T()) step) noexcept {
    return {start, finish, step};
}

/// generate sequence [start; finish)
template <typename T>
constexpr ::NPrivate::TSimpleXRange<T> xrange(T start, T finish) noexcept {
    return {start, finish};
}

/// generate sequence [0; finish)
template <typename T>
constexpr auto xrange(T finish) noexcept -> decltype(xrange(T(), finish)) {
    return xrange(T(), finish);
}