Argument.this

Constructs an argument with the given name and count. The count specifies how many argument elements should be consumed from the command line. By default, this is 1.

  1. this(string name, size_t count = 1)
    struct Argument
    this
    pure nothrow
    (
    string name
    ,
    size_t count = 1
    )
  2. this(string name, size_t lowerBound, size_t upperBound)
  3. this(string name, Multiplicity multiplicity)

Meta