git_stash_cb

This is a callback function you can provide to iterate over all the stashed states that will be invoked per entry.

@param index The position within the stash list. 0 points to the most recent stashed state. @param message The stash message. @param stash_id The commit oid of the stashed state. @param payload Extra parameter to callback function. @return 0 to continue iterating or non-zero to stop.

extern (C) nothrow @nogc
alias git_stash_cb = int function
(
size_t index
,
const(char)* message
,,
void* payload
)

Meta