Skip to content

payload/ForIterator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

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:

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.

About

C++11 range-for loop with iterators

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages