https://github.com/philipglazman/iterators-cpp
A few iterator classes written in C++
https://github.com/philipglazman/iterators-cpp
Last synced: 3 months ago
JSON representation
A few iterator classes written in C++
- Host: GitHub
- URL: https://github.com/philipglazman/iterators-cpp
- Owner: philipglazman
- Created: 2017-06-27T15:03:45.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-27T15:09:46.000Z (almost 8 years ago)
- Last Synced: 2025-01-01T12:15:10.959Z (5 months ago)
- Language: C++
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Iterators-Cpp
A few iterator classes written in C++reverse_iterator - iterates in reverse order using a random access iterator of type Iter
istream_iterator - iterates through an input stream, reading elements of type T
ostream_iterator - iterates through an output stream, writing elements of type T, separated by a character string
insert_iterator - insert elements at any position in a container of type Cont
back_insert_iterator - insert elements at the end of a container of type Cont
front_insert_iterator - insert elements at the front of a container of type Cont.