alpm.alpm_list

Undocumented in source.

Members

Aliases

alpm_list_fn_cmp
alias alpm_list_fn_cmp = int function(const(void)*, const(void)*)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
alpm_list_fn_free
alias alpm_list_fn_free = void function(void*)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
alpm_list_t
alias alpm_list_t = __alpm_list_t
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Functions

alpm_list_add
alpm_list_t* alpm_list_add(alpm_list_t* list, void* data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
alpm_list_add_sorted
alpm_list_t* alpm_list_add_sorted(alpm_list_t* list, void* data, alpm_list_fn_cmp fn)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
alpm_list_append
alpm_list_t* alpm_list_append(alpm_list_t** list, void* data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
alpm_list_append_strdup
alpm_list_t* alpm_list_append_strdup(alpm_list_t** list, const(char)* data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
alpm_list_copy
alpm_list_t* alpm_list_copy(const(alpm_list_t)* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
alpm_list_copy_data
alpm_list_t* alpm_list_copy_data(const(alpm_list_t)* list, size_t size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
alpm_list_count
size_t alpm_list_count(const(alpm_list_t)* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
alpm_list_diff
alpm_list_t* alpm_list_diff(const(alpm_list_t)* lhs, const(alpm_list_t)* rhs, alpm_list_fn_cmp fn)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
alpm_list_diff_sorted
void alpm_list_diff_sorted(const(alpm_list_t)* left, const(alpm_list_t)* right, alpm_list_fn_cmp fn, alpm_list_t** onlyleft, alpm_list_t** onlyright)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
alpm_list_find
void* alpm_list_find(const(alpm_list_t)* haystack, const(void)* needle, alpm_list_fn_cmp fn)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
alpm_list_find_ptr
void* alpm_list_find_ptr(const(alpm_list_t)* haystack, const(void)* needle)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
alpm_list_find_str
char* alpm_list_find_str(const(alpm_list_t)* haystack, const(char)* needle)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
alpm_list_free
void alpm_list_free(alpm_list_t* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
alpm_list_free_inner
void alpm_list_free_inner(alpm_list_t* list, alpm_list_fn_free fn)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
alpm_list_join
alpm_list_t* alpm_list_join(alpm_list_t* first, alpm_list_t* second)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
alpm_list_last
alpm_list_t* alpm_list_last(const(alpm_list_t)* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
alpm_list_mmerge
alpm_list_t* alpm_list_mmerge(alpm_list_t* left, alpm_list_t* right, alpm_list_fn_cmp fn)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
alpm_list_msort
alpm_list_t* alpm_list_msort(alpm_list_t* list, size_t n, alpm_list_fn_cmp fn)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
alpm_list_next
alpm_list_t* alpm_list_next(const(alpm_list_t)* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
alpm_list_nth
alpm_list_t* alpm_list_nth(const(alpm_list_t)* list, size_t n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
alpm_list_previous
alpm_list_t* alpm_list_previous(const(alpm_list_t)* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
alpm_list_remove
alpm_list_t* alpm_list_remove(alpm_list_t* haystack, const(void)* needle, alpm_list_fn_cmp fn, void** data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
alpm_list_remove_dupes
alpm_list_t* alpm_list_remove_dupes(const(alpm_list_t)* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
alpm_list_remove_item
alpm_list_t* alpm_list_remove_item(alpm_list_t* haystack, alpm_list_t* item)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
alpm_list_remove_str
alpm_list_t* alpm_list_remove_str(alpm_list_t* haystack, const(char)* needle, char** data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
alpm_list_reverse
alpm_list_t* alpm_list_reverse(alpm_list_t* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
alpm_list_strdup
alpm_list_t* alpm_list_strdup(const(alpm_list_t)* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
alpm_list_to_array
void* alpm_list_to_array(const(alpm_list_t)* list, size_t n, size_t size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Structs

__alpm_list_t
struct __alpm_list_t

@brief Linked list type used by libalpm.

Meta