Hacker News new | ask | show | jobs
by jessedhillon 2155 days ago

    *args
creates a catch-all variadic function parameter called `args` which matches all positional parameters not heretofore assigned

    *
(same operator, without a name following) indicates that no more positional parameters may be matched after this point

They are close enough cognitively to warrant reuse IMO.