Function

Vipsslist_map2_rev

Declaration [src]

void*
vips_slist_map2_rev (
  GSList* list,
  VipsSListMap2Fn fn,
  void* a,
  void* b
)

Description [src]

Map backwards. We _reverse() rather than recurse and unwind to save stack.

Parameters

list A list of guint8
 

A GSList

 The data is owned by the caller of the function.
fn VipsSListMap2Fn
 

Function to apply to each list element.

a void*
 

User data.

 The argument can be NULL.
 The data is owned by the caller of the function.
b void*
 

User data.

 The argument can be NULL.
 The data is owned by the caller of the function.

Return value

Returns: gpointer
 

NULL if fn returns NULL for all arguments, otherwise the first non-NULL value from fn.

 The data is owned by the called function.
 The return value can be NULL.