| Server IP : 217.160.0.135 / Your IP : 216.73.216.76 Web Server : Apache System : Linux www 6.18.52-i1-ampere #1203 SMP Mon Sep 14 18:29:59 CEST 2026 aarch64 User : sws1074145052 ( 1074145052) PHP Version : 8.3.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /lib/python3/dist-packages/pythran/pythonic/include/types/ |
Upload File : |
#ifndef PYTHONIC_INCLUDE_TYPES_GENERATOR_HPP
#define PYTHONIC_INCLUDE_TYPES_GENERATOR_HPP
#include <iterator>
#include <cstddef>
PYTHONIC_NS_BEGIN
namespace types
{
template <class T>
struct generator_iterator
: std::iterator<std::forward_iterator_tag, typename T::result_type,
ptrdiff_t, typename T::result_type *,
typename T::result_type /* no ref */> {
T the_generator;
generator_iterator();
generator_iterator(T const &a_generator);
generator_iterator &operator++();
typename T::result_type operator*() const;
bool operator!=(generator_iterator<T> const &other) const;
bool operator==(generator_iterator<T> const &other) const;
bool operator<(generator_iterator<T> const &other) const;
};
}
PYTHONIC_NS_END
#endif