In a method definition, when * is used in the following manner, what does it mean?
*
def foo(*) ... end
I understand the foll
It means "take and discard any number of parameters".
Both definitions are technically the same, but not giving a name to the argument array means you can't access it.