

   TThhee NNuullll OObbjjeecctt

        NULL
        as.null(x)
        is.null(x)

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

        `NULL' represents the null object in R.  NULL is used
        mainly to represent the lists with zero length, and is
        often returned by expressions and functions whose value
        is undefined.

        `as.null' ignores its argument and returns the value
        `NULL'.

        `is.null' returns `TRUE' if its argument is `NULL' and
        `FALSE' otherwise.

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

        is.null(list())    # TRUE (not so in S)
        is.null(integer(0))# F
        is.null(logical(0))# F
        as.null(list(a=1,b='c'))

