You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current implementation does not support multiple values. As a result, using syntax like -opt xx -opt aa is not feasible out of the box.
Proposal
To address this limitation, we propose utilizing a [][]u8 data structure to accommodate multiple value arguments. This change will enable the command-line interface to handle multiple values for options seamlessly.
The text was updated successfully, but these errors were encountered:
Problem Statement
The current implementation does not support multiple values. As a result, using syntax like
-opt xx -opt aa
is not feasible out of the box.Proposal
To address this limitation, we propose utilizing a
[][]u8
data structure to accommodate multiple value arguments. This change will enable the command-line interface to handle multiple values for options seamlessly.The text was updated successfully, but these errors were encountered: