├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── range.hpp └── test.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klmr/cpp11-range/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klmr/cpp11-range/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klmr/cpp11-range/HEAD/README.md -------------------------------------------------------------------------------- /range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klmr/cpp11-range/HEAD/range.hpp -------------------------------------------------------------------------------- /test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klmr/cpp11-range/HEAD/test.cpp --------------------------------------------------------------------------------