@@ -530,7 +530,7 @@ Before parsing, you can set the following options:
530
530
are ` CLI::MultiOptionPolicy::Throw ` , ` CLI::MultiOptionPolicy::Throw ` ,
531
531
` CLI::MultiOptionPolicy::TakeLast ` , ` CLI::MultiOptionPolicy::TakeFirst ` ,
532
532
` CLI::MultiOptionPolicy::Join ` , ` CLI::MultiOptionPolicy::TakeAll ` , and
533
- ` CLI::MultiOptionPolicy::Sum ` 🚧 .
533
+ ` CLI::MultiOptionPolicy::Sum ` 🆕 .
534
534
- ` ->check(std::string(const std::string &), validator_name="",validator_description="") ` :
535
535
Define a check function. The function should return a non empty string with
536
536
the error message if the check fails
@@ -571,7 +571,7 @@ Before parsing, you can set the following options:
571
571
- ` ->trigger_on_parse() ` : If set, causes the callback and all associated
572
572
validation checks for the option to be executed when the option value is
573
573
parsed vs. at the end of all parsing. This could cause the callback to be
574
- executed multiple times. Also works with positional options 🆕 .
574
+ executed multiple times. Also works with positional options.
575
575
576
576
These options return the ` Option ` pointer, so you can chain them together, and
577
577
even skip storing the pointer entirely. The ` each ` function takes any function
@@ -658,7 +658,7 @@ CLI11 has several Validators built-in that perform some common checks
658
658
- ` CLI::ExistingDirectory ` : Requires that the directory exists.
659
659
- ` CLI::ExistingPath ` : Requires that the path (file or directory) exists.
660
660
- ` CLI::NonexistentPath ` : Requires that the path does not exist.
661
- - ` CLI::FileOnDefaultPath ` : 🆕 Best used as a transform, Will check that a file
661
+ - ` CLI::FileOnDefaultPath ` : Best used as a transform, Will check that a file
662
662
exists either directly or in a default path and update the path appropriately.
663
663
See [ Transforming Validators] ( #transforming-validators ) for more details
664
664
- ` CLI::Range(min,max) ` : Requires that the option be between min and max (make
0 commit comments