glib.gqueue

Undocumented in source.

Members

Functions

g_queue_clear
void g_queue_clear(GQueue* queue)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_copy
GQueue* g_queue_copy(GQueue* queue)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_delete_link
void g_queue_delete_link(GQueue* queue, GList* link_)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_find
GList* g_queue_find(GQueue* queue, gconstpointer data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_find_custom
GList* g_queue_find_custom(GQueue* queue, gconstpointer data, GCompareFunc func)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_foreach
void g_queue_foreach(GQueue* queue, GFunc func, gpointer user_data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_free
void g_queue_free(GQueue* queue)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_free_full
void g_queue_free_full(GQueue* queue, GDestroyNotify free_func)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_get_length
guint g_queue_get_length(GQueue* queue)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_index
gint g_queue_index(GQueue* queue, gconstpointer data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_init
void g_queue_init(GQueue* queue)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_insert_after
void g_queue_insert_after(GQueue* queue, GList* sibling, gpointer data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_insert_before
void g_queue_insert_before(GQueue* queue, GList* sibling, gpointer data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_insert_sorted
void g_queue_insert_sorted(GQueue* queue, gpointer data, GCompareDataFunc func, gpointer user_data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_is_empty
gboolean g_queue_is_empty(GQueue* queue)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_link_index
gint g_queue_link_index(GQueue* queue, GList* link_)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_new
GQueue* g_queue_new()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_peek_head
gpointer g_queue_peek_head(GQueue* queue)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_peek_head_link
GList* g_queue_peek_head_link(GQueue* queue)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_peek_nth
gpointer g_queue_peek_nth(GQueue* queue, guint n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_peek_nth_link
GList* g_queue_peek_nth_link(GQueue* queue, guint n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_peek_tail
gpointer g_queue_peek_tail(GQueue* queue)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_peek_tail_link
GList* g_queue_peek_tail_link(GQueue* queue)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_pop_head
gpointer g_queue_pop_head(GQueue* queue)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_pop_head_link
GList* g_queue_pop_head_link(GQueue* queue)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_pop_nth
gpointer g_queue_pop_nth(GQueue* queue, guint n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_pop_nth_link
GList* g_queue_pop_nth_link(GQueue* queue, guint n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_pop_tail
gpointer g_queue_pop_tail(GQueue* queue)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_pop_tail_link
GList* g_queue_pop_tail_link(GQueue* queue)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_push_head
void g_queue_push_head(GQueue* queue, gpointer data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_push_head_link
void g_queue_push_head_link(GQueue* queue, GList* link_)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_push_nth
void g_queue_push_nth(GQueue* queue, gpointer data, gint n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_push_nth_link
void g_queue_push_nth_link(GQueue* queue, gint n, GList* link_)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_push_tail
void g_queue_push_tail(GQueue* queue, gpointer data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_push_tail_link
void g_queue_push_tail_link(GQueue* queue, GList* link_)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_remove
gboolean g_queue_remove(GQueue* queue, gconstpointer data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_remove_all
guint g_queue_remove_all(GQueue* queue, gconstpointer data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_reverse
void g_queue_reverse(GQueue* queue)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_sort
void g_queue_sort(GQueue* queue, GCompareDataFunc compare_func, gpointer user_data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
g_queue_unlink
void g_queue_unlink(GQueue* queue, GList* link_)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Structs

GQueue
struct GQueue
Undocumented in source.

Meta