git_index_get_byindex

Get a pointer to one of the entries in the index

The entry is not modifiable and should not be freed. Because the git_index_entry struct is a publicly defined struct, you should be able to make your own permanent copy of the data if necessary.

extern (C) nothrow @nogc
git_index_get_byindex

Parameters

index libgit2_d.types.git_index*

an existing index object

n size_t

the position of the entry

Return Value

Type: const(.git_index_entry)*

a pointer to the entry; null if out of bounds

Meta