Generator (computer programming): Difference between revisions

Content deleted Content added
Chmarkine (talk | contribs)
m change to https if the server sends HSTS header, replaced: http://www.python.org → https://www.python.org (4) using AWB
fixed unusual syntax in c++ range class
Line 134:
class range
{
private:
int last;
int iter;
 
public:
range(int end):
last(end),