Add add_choices accepting std::vector to argparse for convenience.

(cherry picked from commit 1126227206)
This commit is contained in:
Alex Shvartzkop 2024-03-03 21:14:49 +03:00
parent 27e4b2276b
commit fab52bd95a
1 changed files with 6 additions and 0 deletions

View File

@ -783,6 +783,12 @@ public:
return *this;
}
template <typename T> Argument &add_choices(std::vector<T> &&choices) {
for (T &choice : choices)
add_choice(std::forward<T>(choice));
return *this;
}
template <typename T, typename... U>
Argument &choices(T &&first, U &&... rest) {
add_choice(std::forward<T>(first));