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
|
class Iter { public: explicit Iter(int a) : _value(a) {} bool operator!=(const Iter i) { return this->GetValue() != i.GetValue(); } int operator*() const { return this->GetValue(); } const Iter &operator++() { return ++_value, *this; } int GetValue() const { return _value; }
private: int _value; };
class range { public: explicit range(int a, int b) : _begin(a), _end(b) {} Iter begin() { return Iter(_begin); } Iter end() { return Iter(_end); }
private: int _begin; int _end; };
|