I went with expansion here, as it was easier to implement,
given the complexities of how the options parsing code works.
Rather than try to maintain state machines and parsing for both
forms of argument, we can transform the short options into the
long form options. This, then, might lead to some issues when
the code is expanded to handle arguments to those options.
I'll probably just add a state tracking bit to that parameter to
say that it was expanded from a specific short form.
It might be worth it to permit a short form to expand to a long
form _with_ specific hardcoded option. This gets into defaults,
which might be the better way to underpin that.
For expanding these into the automatic help documentation, the
Long options (the main option definition struct) should maintain
a list of the short forms that it supports.
I also need to add a neat syntax. Something like:
```
-'o'_option <= --"long-option"_option
```
It might be beneficial to auto generate something like:
```
-'O'_option <= --"no-long-option"_option
```
for boolean toggles. Should it always be so? Maybe an extra
sigil to allow both?
I've used `constexpr` semantics on `__PRETTY_FUNCTION__` along
with a simple compiletime hash function to create a way to represent
types as NTTP values and then rehydrate them.
This should let me rewrite a lot of things more simply. We can
now have arrays of regular values which can be representative
codes for types.