๐Ÿ“ฆ payload / ForIterator

C++11 range-for loop with iterators

โ˜… 3 stars โ‘‚ 2 forks ๐Ÿ‘ 3 watching โš–๏ธ MIT License
๐Ÿ“ฅ Clone https://github.com/payload/ForIterator.git
HTTPS git clone https://github.com/payload/ForIterator.git
SSH git clone git@github.com:payload/ForIterator.git
CLI gh repo clone payload/ForIterator
payload payload README: This isn't state-of-the-art ;-) 66eb264 9 years ago ๐Ÿ“ History
๐Ÿ“‚ master View all commits โ†’
๐Ÿ“„ ForIterator.hpp
๐Ÿ“„ LICENSE
๐Ÿ“„ README.md
๐Ÿ“„ README.md

ForIterator ===========

C++11 range-for loop with iterators. This isn't state-of-the-art ;-) Look into Boost iterator transformers for the whole range of possible iterators.

Usage:

``c++ for(auto i : ForIterator(some_list)) { // i is the iterator, which was returned by some_list.begin() // might be useful for whatever reason } ``

Free Software under MIT License, see LICENSE file.