Browse Source

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

newinvert
Alex Shvartzkop 2 years ago
parent
commit
1126227206
  1. 6
      thirdparty/argparse/include/argparse/argparse.hpp

6
thirdparty/argparse/include/argparse/argparse.hpp

@ -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));

Loading…
Cancel
Save