

   CChhaarraacctteerr SSttrriinngg VVeeccttoorrss

        character(n=0)

        as.character(x)
        is.character(x)

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

        This function creates a character vector of the speci-
        fied length.  The elements of the vector are all equal
        to `""'.

        `as.character' attempts to coerce its argument to be of
        character type.

        `is.character' returns `TRUE' or `FALSE' depending on
        whether its argument is of character type or not.

