Function
GLibPtrArrayforeach
since: 2.4
Declaration [src]
void
g_ptr_array_foreach (
  GPtrArray* array,
  GFunc func,
  gpointer user_data
)
      Description [src]
Calls a function for each element of a GPtrArray. func must not
add elements to or remove elements from the array.
Available since: 2.4
This function is not directly available to language bindings.
Parameters
array- 
            
Type: An array of
gpointerA pointer array.
The data is owned by the caller of the function.  func- 
            
Type:
GFuncThe function to call for each array element.
 user_data- 
            
Type:
gpointerThe user data to pass to the function.
The argument can be NULL.The data is owned by the caller of the function.