PGROUTING
3.2
|
#include <stdint.h>
#include <postgres.h>
#include <utils/array.h>
Go to the source code of this file.
Functions | |
int64_t * | pgr_get_bigIntArray (size_t *arrlen, ArrayType *input) |
Enforces the input array to be NOT empty. More... | |
int64_t * | pgr_get_bigIntArray_allowEmpty (size_t *arrlen, ArrayType *input) |
Allows the input array to be empty. More... | |
int64_t* pgr_get_bigIntArray | ( | size_t * | arrlen, |
ArrayType * | input | ||
) |
Enforces the input array to be NOT empty.
[out] | arrlen | Length of the array |
[in] | input | Input type of the array |
Definition at line 146 of file arrays_input.c.
References pgr_get_bigIntArr().
Referenced by compute_trsp(), pgr_SPI_getBigIntArr(), and process().
int64_t* pgr_get_bigIntArray_allowEmpty | ( | size_t * | arrlen, |
ArrayType * | input | ||
) |
Allows the input array to be empty.
[out] | arrlen | Length of the array |
[in] | input | Input type of the array |
Definition at line 156 of file arrays_input.c.
References pgr_get_bigIntArr().
Referenced by process().