Generator<T> typedef
Takes an integer that represents an index and then returns a value of type T
based on that index.
Implementation
typedef T Generator<T>(int index);
Takes an integer that represents an index and then returns a value of type T
based on that index.
typedef T Generator<T>(int index);