mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-20 08:18:55 +00:00
LibCore: Support Optional<StringView> as an argument to ArgsParser
While StringView does have a null state, we have been moving away from this in our other String classes. To represent a StringView not being given at all on the commandline, use an Optional.
This commit is contained in:
parent
3e61d20b40
commit
abf35f5bd6
Notes:
sideshowbarker
2024-07-17 20:33:50 +09:00
Author: https://github.com/shannonbooth
Commit: abf35f5bd6
Pull-request: https://github.com/SerenityOS/serenity/pull/23439
2 changed files with 18 additions and 0 deletions
|
@ -170,6 +170,7 @@ public:
|
|||
void add_option(ByteString& value, char const* help_string, char const* long_name, char short_name, char const* value_name, OptionHideMode hide_mode = OptionHideMode::None);
|
||||
void add_option(String& value, char const* help_string, char const* long_name, char short_name, char const* value_name, OptionHideMode hide_mode = OptionHideMode::None);
|
||||
void add_option(StringView& value, char const* help_string, char const* long_name, char short_name, char const* value_name, OptionHideMode hide_mode = OptionHideMode::None);
|
||||
void add_option(Optional<StringView>& value, char const* help_string, char const* long_name, char short_name, char const* value_name, OptionHideMode hide_mode = OptionHideMode::None);
|
||||
void add_option(double& value, char const* help_string, char const* long_name, char short_name, char const* value_name, OptionHideMode hide_mode = OptionHideMode::None);
|
||||
void add_option(Optional<double>& value, char const* help_string, char const* long_name, char short_name, char const* value_name, OptionHideMode hide_mode = OptionHideMode::None);
|
||||
// Note: This option is being used when we expect the user to use the same option
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue