Argument.this

Constructs an argument with the given name and an upper and lower bound for how many argument elements should be consumed from the command line.

  1. this(string name, size_t count = 1)
  2. this(string name, size_t lowerBound, size_t upperBound)
    struct Argument
    this
    pure nothrow
    (
    string name
    ,
    size_t lowerBound
    ,
    size_t upperBound
    )
    in { assert (lowerBound < upperBound); }
  3. this(string name, Multiplicity multiplicity)

Meta