Option.this

  1. this(string flag, string helpText, TargetOS os, bool documented)
  2. this(string flag, string helpText, string ddocText, TargetOS os, bool documented)
    struct Option
    @safe
    this
    (
    string flag
    ,
    string helpText
    ,
    string ddocText
    ,,
    bool documented = true
    )

Parameters

flag string

CLI flag without leading -, e.g. color

helpText string

detailed description of the flag

os TargetOS

for which TargetOS the flags are applicable

ddocText string

detailed description of the flag (in Ddoc)

documented bool

whether this option should be shown in the documentation

Meta