Method
GLibCachevalue_foreach
deprecated: 2.10
Declaration [src]
void
g_cache_value_foreach (
  GCache* cache,
  GHFunc func,
  gpointer user_data
)
Description [src]
Calls the given function for each of the values in the GCache.
Deprecated since: 2.10
The reason is that it passes pointers to internal
   data structures to func; use g_cache_key_foreach() instead.
Parameters
- func
- 
            Type: GHFuncThe function to call with each GCachevalue.
- user_data
- 
            Type: gpointerUser data to pass to the function. The argument can be NULL.The data is owned by the caller of the method.