|
typedef List< T > | Container |
|
typedef T | value_type |
|
typedef Container::allocator_type | allocator_type |
|
typedef Container::pointer | pointer |
|
typedef Container::const_pointer | const_pointer |
|
typedef T & | reference |
|
typedef const T & | const_reference |
|
typedef Container::size_type | size_type |
|
typedef Container::difference_type | difference_type |
|
typedef Container::iterator | iterator |
|
typedef Container::const_iterator | const_iterator |
|
typedef std::reverse_iterator< iterator > | reverse_iterator |
|
typedef std::reverse_iterator< const_iterator > | const_reverse_iterator |
|
|
| NargsValueFlag (Group &group_, const std::string &name_, const std::string &help_, Matcher &&matcher_, Nargs nargs_, const List< T > &defaultValues_={}, Options options_={}) |
|
virtual Nargs | NumberOfArguments () const noexcept override |
| Defines how many values can be consumed by this option. More...
|
|
virtual void | ParseValue (const std::vector< std::string > &values_) override |
| Parse values of this option. More...
|
|
List< T > & | Get () noexcept |
|
iterator | begin () noexcept |
|
const_iterator | begin () const noexcept |
|
const_iterator | cbegin () const noexcept |
|
iterator | end () noexcept |
|
const_iterator | end () const noexcept |
|
const_iterator | cend () const noexcept |
|
virtual void | Reset () noexcept override |
|
virtual FlagBase * | Match (const EitherFlag &arg) override |
|
| FlagBase (const std::string &name_, const std::string &help_, Matcher &&matcher_, const bool extraError_=false) |
|
| FlagBase (const std::string &name_, const std::string &help_, Matcher &&matcher_, Options options_) |
|
virtual std::vector< FlagBase * > | GetAllFlags () override |
|
const Matcher & | GetMatcher () const |
|
virtual void | Validate (const std::string &shortPrefix, const std::string &longPrefix) const override |
|
virtual std::vector< std::string > | GetProgramLine (const HelpParams ¶ms) const override |
|
virtual bool | HasFlag () const override |
|
| NamedBase (const std::string &name_, const std::string &help_, Options options_={}) |
|
void | HelpDefault (const std::string &str) |
| Sets default value string that will be added to argument description. More...
|
|
std::string | HelpDefault (const HelpParams ¶ms) const |
| Gets default value string that will be added to argument description.
|
|
void | HelpChoices (const std::vector< std::string > &array) |
| Sets choices strings that will be added to argument description. More...
|
|
std::vector< std::string > | HelpChoices (const HelpParams ¶ms) const |
| Gets choices strings that will be added to argument description.
|
|
virtual std::vector< std::tuple< std::string, std::string, unsigned > > | GetDescription (const HelpParams ¶ms, const unsigned indentLevel) const override |
|
virtual std::string | Name () const |
|
| Base (const std::string &help_, Options options_={}) |
|
Options | GetOptions () const noexcept |
|
bool | IsRequired () const noexcept |
|
virtual bool | Matched () const noexcept |
|
| operator bool () const noexcept |
|
virtual std::vector< Command * > | GetCommands () |
|
virtual bool | IsGroup () const |
|
virtual PositionalBase * | GetNextPositional () |
|
virtual bool | HasPositional () const |
|
virtual bool | HasCommand () const |
|
void | KickOut (bool kickout_) noexcept |
| Sets a kick-out value for building subparsers.
|
|
bool | KickOut () const noexcept |
| Gets the kick-out value for building subparsers.
|
|
template<typename T, template< typename... > class List = detail::vector, typename Reader = ValueReader>
class args::NargsValueFlag< T, List, Reader >
A variadic arguments accepting flag class.
- Template Parameters
-
T | the type to extract the argument as |
List | the list type that houses the values |
Reader | The functor type used to read the argument, taking the name, value, and destination reference with operator(), and returning a bool (if ARGS_NOEXCEPT is defined) |