home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Educational / R-0.49-MI / R-0.49-I / help / base / NULL < prev    next >
Encoding:
Text File  |  1997-04-23  |  486 b   |  21 lines

  1.     
  2.     _T_h_e _N_u_l_l _O_b_j_e_c_t
  3.     
  4.          NULL
  5.          as.null(x)
  6.          is.null(x)
  7.     
  8.     _D_e_s_c_r_i_p_t_i_o_n:
  9.     
  10.          NULL represents the null object in R.  NULL is used
  11.          mainly to represent the lists with zero length, and is
  12.          often returned by expressions and functions whose value
  13.          is undefined.
  14.     
  15.          as.null ignores its argument and returns the value
  16.          NULL.
  17.     
  18.          is.null returns TRUE if its argument is NULL and FALSE
  19.          otherwise.
  20.     
  21.