

   TThhee NNuummbbeerr ooff AArrgguummeennttss ttoo aa FFuunnccttiioonn

        nargs()

   DDeessccrriippttiioonn::

        When used inside a function body, `nargs' returns the
        number of arguments supplied to that function.

   SSeeee AAllssoo::

        `args', `formals' and `sys.call'.

   EExxaammpplleess::

        tst <- function(a, b=3, ...) {nargs()}
        tst() # 0
        tst(clicketyclack) # 1 (even non existing)
        tst(c1,a2,rr3) # 3

        nargs()# not really meaningful

