├── .clang-format ├── .cmake-format ├── .github └── workflows │ ├── benchmark.yml │ ├── install.yml │ ├── macos.yml │ ├── style.yml │ ├── ubuntu.yml │ └── windows.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── benchmark ├── CMakeLists.txt └── benchmark.cpp ├── cmake └── CPM.cmake ├── codecov.yml ├── examples ├── CMakeLists.txt ├── array.cpp ├── fibonacci.cpp └── iteration.cpp ├── include └── easy_iterator.h └── test ├── CMakeLists.txt └── source ├── easy_iterator.cpp └── main.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLartians/EasyIterator/HEAD/.clang-format -------------------------------------------------------------------------------- /.cmake-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLartians/EasyIterator/HEAD/.cmake-format -------------------------------------------------------------------------------- /.github/workflows/benchmark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLartians/EasyIterator/HEAD/.github/workflows/benchmark.yml -------------------------------------------------------------------------------- /.github/workflows/install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLartians/EasyIterator/HEAD/.github/workflows/install.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLartians/EasyIterator/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.github/workflows/style.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLartians/EasyIterator/HEAD/.github/workflows/style.yml -------------------------------------------------------------------------------- /.github/workflows/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLartians/EasyIterator/HEAD/.github/workflows/ubuntu.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLartians/EasyIterator/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLartians/EasyIterator/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLartians/EasyIterator/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLartians/EasyIterator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLartians/EasyIterator/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLartians/EasyIterator/HEAD/benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /benchmark/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLartians/EasyIterator/HEAD/benchmark/benchmark.cpp -------------------------------------------------------------------------------- /cmake/CPM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLartians/EasyIterator/HEAD/cmake/CPM.cmake -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - test -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLartians/EasyIterator/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLartians/EasyIterator/HEAD/examples/array.cpp -------------------------------------------------------------------------------- /examples/fibonacci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLartians/EasyIterator/HEAD/examples/fibonacci.cpp -------------------------------------------------------------------------------- /examples/iteration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLartians/EasyIterator/HEAD/examples/iteration.cpp -------------------------------------------------------------------------------- /include/easy_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLartians/EasyIterator/HEAD/include/easy_iterator.h -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLartians/EasyIterator/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/source/easy_iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLartians/EasyIterator/HEAD/test/source/easy_iterator.cpp -------------------------------------------------------------------------------- /test/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLartians/EasyIterator/HEAD/test/source/main.cpp --------------------------------------------------------------------------------