|
Py2Cpp 1.6.3; VERSION ${PROJECT_VERSION}
|
Python-like range implementation for C++. More...
#include <cstddef>#include <iterator>

Go to the source code of this file.
Classes | |
| struct | py::RangeIterator< T > |
| Iterator for range-based sequences. More... | |
| struct | py::Range< T > |
| Python-like range implementation. More... | |
Namespaces | |
| namespace | py |
| Python-like utilities and data structures for C++. | |
Macros | |
| #define | CONSTEXPR14 inline |
Functions | |
| template<typename T > | |
| CONSTEXPR14 auto | py::range (T start, T stop) -> Range< T > |
| range(T start, T stop) | |
| template<typename T > | |
| CONSTEXPR14 auto | py::range (T stop) -> Range< T > |
| range(T stop) | |
Python-like range implementation for C++.
Provides RangeIterator and Range templates that mimic Python's range() function for generating sequential integer sequences.
| #define CONSTEXPR14 inline |