| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | parsers: Add extra tests to `clap.parsers.int` | 2023-09-10 | 1 | -0/+7 | |
| | | |||||
| * | parsers: Actually add some documentation to these functions | 2023-09-10 | 1 | -2/+10 | |
| | | |||||
| * | Add clap.parsers.enumeration for parsing enums | 2022-07-25 | 1 | -0/+37 | |
| | | | | | closes #78 | ||||
| * | Allow for clap to parse argument values into types | 2022-03-09 | 1 | -0/+48 | |
| This changes - `.flag`, `.option`, `.options` and `.positionals` are now just fields you access on the result of `parse` and `parseEx`. - `clap.ComptimeClap` has been removed. - `clap.StreamingClap` is now called `clap.streaming.Clap` - `parse` and `parseEx` now takes a `value_parsers` argument that provides the parsers to parse values. - Remove `helpEx`, `helpFull`, `usageEx` and `usageFull`. They now just expect `Id` to have methods for getting the description and value texts. | |||||