Next: Fixed Size Data Array Pointer Set Library, Previous: Fixed Size Data Array Search Library, Up: Fixed Size Data Array Interface [Index]
int x1f4_fgzd_??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_fxzd_??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_llzd_??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_lxzd_??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