Ranges help to deal more conveniently with STL containers, and the composition of algorithms. Part of this functionality is rolled into the C++20 standard.
simple.cpp
: very simple example of using ranges.transform_accumulate.cpp
: simple example of chaining a transformation and an accumulator on a vector.classic_stl_to_ranges.cpp
: from classic STL algorithms to ranges and views.classic_stl_to_ranges_performance.cpp
: performance test for classic algorithms versus views.input_ranges.cpp
: example of using an input stream view and a range copy.data.txt
: small data file to use forinput_ranges.cpp
application.enumerate.cpp
: illustration of usingstd::enumerate
.CMakeLists.txt
: CMake file to build the applications.
Note: you will need at least g++ 13.x to compile this succesfully.