mpz_array_t
.
More...
#include <x_array_list.h>
Data Fields | |
uint32_t | alloced |
uint32_t | length |
mpz_array_t ** | data |
mpz_array_t
.
lib/utils/include/x_array.h
This structure defines an array of pointers to mpz_array_t
elements. Its name is a bit confusing since it is actually more of an array than a list strictly speaking.
Definition at line 170 of file x_array_list.h.
uint32_t struct_mpz_array_list_t::alloced |
This is the maximum number of mpz_array_t
pointers that the array can accommodate.
Definition at line 175 of file x_array_list.h.
uint32_t struct_mpz_array_list_t::length |
Current number of mpz_array_t
pointers hold in the array pointed by the structure's data
field.
Definition at line 180 of file x_array_list.h.
Referenced by add_entry_in_mpz_array_list().
Array of pointers to mpz_array_t
whose size is given by the alloced
field.
Definition at line 185 of file x_array_list.h.
Referenced by add_entry_in_mpz_array_list().