ArgParserSplitter

Undocumented in source.

Constructors

this
this(string[] input)
Undocumented in source.

Members

Functions

popFront
void popFront()
Undocumented in source. Be warned that the author may not have intended to support it.

Properties

empty
bool empty [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
front
string front [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.

Examples

assert(
    ArgParserSplitter([
        "a", "b c", "--one", "-tw o", "--thr=ee"
    ]).equal([
        "a", "b c", "--one", "-tw", "o", "--thr", "ee"
    ])
);

Meta