I want to have parameter values parsed into u64s, but they get special treatment instead. Apparently a u64 captures all remaining parameters and is set to the number of remaining parameters? How is that useful if the values aren't accessible? Wouldn't it make more sense for users to just use a Vec<String> here and call len() when they want the number of parameters?
I want to have parameter values parsed into
u64s, but they get special treatment instead. Apparently au64captures all remaining parameters and is set to the number of remaining parameters? How is that useful if the values aren't accessible? Wouldn't it make more sense for users to just use aVec<String>here and calllen()when they want the number of parameters?