├── .clang-format ├── .gitmodules ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── include └── cor3ntin │ └── rangesnext │ ├── __detail.hpp │ ├── enumerate.hpp │ ├── generator.hpp │ ├── product.hpp │ └── to.hpp └── test ├── enumerate.cpp ├── generator.cpp ├── main.cpp ├── product.cpp └── ranges_to.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cor3ntin/rangesnext/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cor3ntin/rangesnext/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cor3ntin/rangesnext/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cor3ntin/rangesnext/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cor3ntin/rangesnext/HEAD/README.md -------------------------------------------------------------------------------- /include/cor3ntin/rangesnext/__detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cor3ntin/rangesnext/HEAD/include/cor3ntin/rangesnext/__detail.hpp -------------------------------------------------------------------------------- /include/cor3ntin/rangesnext/enumerate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cor3ntin/rangesnext/HEAD/include/cor3ntin/rangesnext/enumerate.hpp -------------------------------------------------------------------------------- /include/cor3ntin/rangesnext/generator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cor3ntin/rangesnext/HEAD/include/cor3ntin/rangesnext/generator.hpp -------------------------------------------------------------------------------- /include/cor3ntin/rangesnext/product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cor3ntin/rangesnext/HEAD/include/cor3ntin/rangesnext/product.hpp -------------------------------------------------------------------------------- /include/cor3ntin/rangesnext/to.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cor3ntin/rangesnext/HEAD/include/cor3ntin/rangesnext/to.hpp -------------------------------------------------------------------------------- /test/enumerate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cor3ntin/rangesnext/HEAD/test/enumerate.cpp -------------------------------------------------------------------------------- /test/generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cor3ntin/rangesnext/HEAD/test/generator.cpp -------------------------------------------------------------------------------- /test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cor3ntin/rangesnext/HEAD/test/main.cpp -------------------------------------------------------------------------------- /test/product.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cor3ntin/rangesnext/HEAD/test/product.cpp -------------------------------------------------------------------------------- /test/ranges_to.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cor3ntin/rangesnext/HEAD/test/ranges_to.cpp --------------------------------------------------------------------------------