FEATURE REQUEST
The README.md says:
Multiple option values: --opt val1 --opt val2 --opt val3
If the type was for example []const []const u8, but if you have none of these (no --opt) then it doesn't use the default value in the value reference, and instead makes it a empty slice, at least that is what I think it happening.
It would be nice if none of them are provided it used the default, or make it a new field in the Option struct, which can determine if no --opt means an empty list or use the default.
FEATURE REQUEST
The README.md says:
If the type was for example []const []const u8, but if you have none of these (no
--opt) then it doesn't use the default value in the value reference, and instead makes it a empty slice, at least that is what I think it happening.It would be nice if none of them are provided it used the default, or make it a new field in the Option struct, which can determine if no
--optmeans an empty list or use the default.