|
SeqAn3 3.4.2-rc.1
The Modern C++ library for sequence analysis.
|
Validator that always returns true. More...
Inheritance diagram for seqan3::detail::default_validator< option_value_t >:Public Types | |
| using | option_value_type = option_value_t |
| Type of values that are tested by validator. | |
Public Member Functions | |
| std::string | get_help_page_message () const |
| Since no validation is happening the help message is empty. | |
| void | operator() (option_value_t const &) const noexcept |
| Value cmp always passes validation because the operator never throws. | |
Additional Inherited Members | |
Related Symbols inherited from validator | |
| using | option_value_type |
| The type of value on which the validator is called on. | |
| void | operator() (option_value_type const &cmp) const |
| Validates the value 'cmp' and throws a seqan3::validation_error on failure. | |
Validator that always returns true.
| option_value_t | Must be a (container of) arithmetic type(s). |
The default validator is needed to make the validator parameter of argument_parser::add_option and argument_parser::add_option optional.
|
inline |
Since no validation is happening the help message is empty.
Implements validator.