Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Everything / generator

Generator

generator

Great Reads

by Gábor Angyal
A superset of JSON with improved type inference capability
by Simeon Sheye
How to manage state and simulate behavior against the system under test.
by Ben Hanson
IDispatch C++ Code Generation Done Right
by matalan44
Generation of POJO Classes is explained in this article

Latest Articles

by Gábor Angyal
A superset of JSON with improved type inference capability
by Simeon Sheye
How to manage state and simulate behavior against the system under test.
by Ben Hanson
IDispatch C++ Code Generation Done Right
by matalan44
Generation of POJO Classes is explained in this article

All Articles

Sort by Score

generator 

by TheCannyCoder
Today we'll look at creating generators. In simple terms, a generator is a function which returns the next value in a sequence. Unlike an iterator, it generates the next value when needed, rather than returning the next item of a pre-generated collection. Some languages such as Python support