Next: Fixed Size Data Array Pointer Set Library, Previous: Fixed Size Data Array Search Library, Up: Fixed Size Data Array Interface [Index]
int x1f4_fgpd_??fset(void *, void *, void *, int (*)(void *, void *))
calls $4 for each element in the $1 associative array greater than the $2 key, with $3 and the data for the element as arguments, in this order, until $4 returns non zero
returns 0 if $4 was never called (i.e. associative array stores no data greater than $2) or if $4 never returned non zero, the non zero return of $4 otherwise
int x1f4_fxpd_??fset(void *, void *, void *, int (*)(void *, void *))
calls $4 for each element in the $1 associative array greater than or matching the $2 key, with $3 and the data for the element as arguments, in this order, until $4 returns non zero
returns 0 if $4 was never called (i.e. associative array stores no data greater than or matching $2) or if $4 never returned non zero, the non zero return of $4 otherwise
int x1f4_llpd_??fset(void *, void *, void *, int (*)(void *, void *))
calls $4 for each element in the $1 associative array less than the $2 key, with $3 and the data for the element as arguments, in this order, until $4 returns non zero
returns 0 if $4 was never called (i.e. associative array stores no data less than $2) or if $4 never returned non zero, the non zero return of $4 otherwise
int x1f4_lxpd_??fset(void *, void *, void *, int (*)(void *, void *))
calls $4 for each element in the $1 associative array less than or matching the $2 key, with $3 and the data for the element as arguments, in this order, until $4 returns non zero
returns 0 if $4 was never called (i.e. associative array stores no data less than or matching $2) or if $4 never returned non zero, the non zero return of $4 otherwise