Last active
April 26, 2017 14:52
-
-
Save eyelash/eeabbf26523ef21c45888af0acfd10d7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iterator> | |
| template <class I, class F> class Map { | |
| I _begin; | |
| I _end; | |
| F f; | |
| public: | |
| Map(const I& _begin, const I& _end, const F& f): _begin(_begin), _end(_end), f(f) {} | |
| class Iterator { | |
| I i; | |
| Map* map; | |
| public: | |
| Iterator(const I& i, Map* map): i(i), map(map) {} | |
| bool operator !=(const Iterator& rhs) const { | |
| return i != rhs.i; | |
| } | |
| decltype(map->f(*i)) operator *() { | |
| return map->f(*i); | |
| } | |
| Iterator& operator ++() { | |
| ++i; | |
| return *this; | |
| } | |
| }; | |
| Iterator begin() { | |
| return Iterator(_begin, this); | |
| } | |
| Iterator end() { | |
| return Iterator(_end, this); | |
| } | |
| }; | |
| template <class I, class F> Map<I, F> map(const I& _begin, const I& _end, const F& f) { | |
| return Map<I, F>(_begin, _end, f); | |
| } | |
| template <class C, class F> auto map(const C& c, const F& f) -> Map<decltype(std::begin(c)), F> { | |
| return Map<decltype(std::begin(c)), F>(std::begin(c), std::end(c), f); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment