

   FFiinndd AAllll NNaammeess iinn aann EExxpprreessssiioonn

        all.names(expr, functions = T,
                max.names = 200, unique = F)
        all.vars(expr, functions = F,
                max.names = 200, unique = T)

   AArrgguummeennttss::

       expr: an expression or call from which the names are to
             be extracted.

   functions: a logical value indicating whether function names
             should be included in the result.

   max.names: the maximum number of names to be returned.

     unique: a logical value which indicates whether duplicate
             names should be removed from the value.

   VVaalluuee::

        These functions return a character vector containing
        all the names which occur in an expression or call.
        These functions differ only in the default values for
        their arguments.

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

        all.names(expression(sin(x+y)))
        all.vars(expression(sin(x+y)))

