deimos.git2.tree

Undocumented in source.

Members

Aliases

git_treebuilder_filter_cb
alias git_treebuilder_filter_cb = int function(const(git_tree_entry)* entry, void* payload)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_treewalk_cb
alias git_treewalk_cb = int function(const(char)* root, const(git_tree_entry)* entry, void* payload)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Enums

git_treewalk_mode
enum git_treewalk_mode
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Functions

git_tree_entry_byid
const(git_tree_entry)* git_tree_entry_byid(const(git_tree)* tree, const(git_oid)* oid)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_tree_entry_byindex
const(git_tree_entry)* git_tree_entry_byindex(const(git_tree)* tree, size_t idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_tree_entry_byname
const(git_tree_entry)* git_tree_entry_byname(const(git_tree)* tree, const(char)* filename)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_tree_entry_bypath
int git_tree_entry_bypath(git_tree_entry** out_, const(git_tree)* root, const(char)* path)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_tree_entry_cmp
int git_tree_entry_cmp(const(git_tree_entry)* e1, const(git_tree_entry)* e2)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_tree_entry_dup
git_tree_entry* git_tree_entry_dup(const(git_tree_entry)* entry)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_tree_entry_filemode
git_filemode_t git_tree_entry_filemode(const(git_tree_entry)* entry)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_tree_entry_filemode_raw
git_filemode_t git_tree_entry_filemode_raw(const(git_tree_entry)* entry)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_tree_entry_free
void git_tree_entry_free(git_tree_entry* entry)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_tree_entry_id
const(git_oid)* git_tree_entry_id(const(git_tree_entry)* entry)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_tree_entry_name
const(char)* git_tree_entry_name(const(git_tree_entry)* entry)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_tree_entry_to_object
int git_tree_entry_to_object(git_object** object_out, git_repository* repo, const(git_tree_entry)* entry)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_tree_entry_type
git_otype git_tree_entry_type(const(git_tree_entry)* entry)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_tree_entrycount
size_t git_tree_entrycount(const(git_tree)* tree)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_tree_free
void git_tree_free(git_tree* tree)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_tree_id
const(git_oid)* git_tree_id(const(git_tree)* tree)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_tree_lookup
int git_tree_lookup(git_tree** out_, git_repository* repo, const(git_oid)* id)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_tree_lookup_prefix
int git_tree_lookup_prefix(git_tree** out_, git_repository* repo, const(git_oid)* id, size_t len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_tree_owner
git_repository* git_tree_owner(const(git_tree)* tree)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_tree_walk
int git_tree_walk(const(git_tree)* tree, git_treewalk_mode mode, git_treewalk_cb callback, void* payload)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_treebuilder_clear
void git_treebuilder_clear(git_treebuilder* bld)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_treebuilder_entrycount
uint git_treebuilder_entrycount(git_treebuilder* bld)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_treebuilder_filter
void git_treebuilder_filter(git_treebuilder* bld, git_treebuilder_filter_cb filter, void* payload)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_treebuilder_free
void git_treebuilder_free(git_treebuilder* bld)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_treebuilder_get
const(git_tree_entry)* git_treebuilder_get(git_treebuilder* bld, const(char)* filename)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_treebuilder_insert
int git_treebuilder_insert(const(git_tree_entry)** out_, git_treebuilder* bld, const(char)* filename, const(git_oid)* id, git_filemode_t filemode)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_treebuilder_new
int git_treebuilder_new(git_treebuilder** out_, git_repository* repo, const(git_tree)* source)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_treebuilder_remove
int git_treebuilder_remove(git_treebuilder* bld, const(char)* filename)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_treebuilder_write
int git_treebuilder_write(git_oid* id, git_repository* repo, git_treebuilder* bld)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Mixins

__anonymous
mixin _ExportEnumMembers!git_treewalk_mode
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Meta