|
primesieve 12.13
|
C prime iterator, please refer to iterator.h for more information. More...
#include <iterator.h>
Public Attributes | |
| size_t | i |
| Current index of the primes array. | |
| size_t | size |
| Current number of primes in the primes array. | |
| uint64_t | start |
| Generate primes >= start. | |
| uint64_t | stop_hint |
| Generate primes <= stop_hint. | |
| uint64_t * | primes |
| The primes array. | |
| void * | memory |
| Pointer to internal IteratorData data structure. | |
| int | is_error |
| Initialized to 0, set to 1 if any error occurs. | |
C prime iterator, please refer to iterator.h for more information.
| uint64_t* primesieve_iterator::primes |
The primes array.
The current smallest prime can be accessed using primes[0]. The current largest prime can be accessed using primes[size-1].