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
Currently {getopt} returns a named list which although convenient for many use cases is an awkward data structure if we care about repeated instances of a flag
In comparison for example the Python getopt module instead
The options occur in the list in the same order in which they were found, thus allowing multiple occurrences. Long and short options may be mixed.
Currently
{getopt}
returns a named list which although convenient for many use cases is an awkward data structure if we care about repeated instances of a flagIn comparison for example the Python
getopt
module insteadIn particular this would be convenient for supporting Adding support for actions r-optparse#22 and allow repeated instances of same flag/option on command line r-optparse#36
The text was updated successfully, but these errors were encountered: