git_config_multivar_iterator_new

Get each value of a multivar

The regular expression is applied case-sensitively on the normalized form of the variable name: the section and variable parts are lower-cased. The subsection is left unchanged.

extern (C) nothrow @nogc
int
git_config_multivar_iterator_new
(,,
const(char)* name
,
const(char)* regexp
)

Parameters

out_ .git_config_iterator**

pointer to store the iterator

cfg const(libgit2_d.types.git_config)*

where to look for the variable

name const(char)*

the variable's name

regexp const(char)*

regular expression to filter which variables we're interested in. Use null to indicate all

Meta