diff options
| author | 2023-04-02 06:10:40 -0500 | |
|---|---|---|
| committer | 2023-04-02 13:10:40 +0200 | |
| commit | ab69ef2db44b6c4b7f00283d52d38fbe71d16c42 (patch) | |
| tree | 10416c0cdda32ba98d54954940c440beac6ccf08 /example/usage.zig | |
| parent | Update build script to actually run the tests (diff) | |
| download | zig-clap-ab69ef2db44b6c4b7f00283d52d38fbe71d16c42.tar.gz zig-clap-ab69ef2db44b6c4b7f00283d52d38fbe71d16c42.tar.xz zig-clap-ab69ef2db44b6c4b7f00283d52d38fbe71d16c42.zip | |
Count occurrences of flags (was "Add .count type for flags") (#96)
Breaking change: parseEx now counts the number of occurrences of flag
parameters (those with takes_value == .none) and returns the count as a
u8. Users of the library will need to change
if (arg_result.my_flag)
to
if (arg_result.my_flag != 0)
Diffstat (limited to '')
| -rw-r--r-- | example/usage.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/usage.zig b/example/usage.zig index 0d21352..333536b 100644 --- a/example/usage.zig +++ b/example/usage.zig | |||
| @@ -14,6 +14,6 @@ pub fn main() !void { | |||
| 14 | 14 | ||
| 15 | // `clap.usage` is a function that can print a simple help message. It can print any `Param` | 15 | // `clap.usage` is a function that can print a simple help message. It can print any `Param` |
| 16 | // where `Id` has a `value` method (`Param(Help)` is one such parameter). | 16 | // where `Id` has a `value` method (`Param(Help)` is one such parameter). |
| 17 | if (res.args.help) | 17 | if (res.args.help != 0) |
| 18 | return clap.usage(std.io.getStdErr().writer(), clap.Help, ¶ms); | 18 | return clap.usage(std.io.getStdErr().writer(), clap.Help, ¶ms); |
| 19 | } | 19 | } |