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 / attributes < prev    next >
Encoding:
Text File  |  1997-04-23  |  559 b   |  24 lines

  1.     
  2.     _O_b_j_e_c_t _A_t_t_r_i_b_u_t_e _L_i_s_t_s
  3.     
  4.          attributes(obj)
  5.          attributes(obj) <- list
  6.     
  7.     _D_e_s_c_r_i_p_t_i_o_n:
  8.     
  9.          This function provides access to an object's attribute
  10.          list.  The simple form above returns the an object's
  11.          attribute list.  The assignment form makes the list on
  12.          the right-hand side of the assignment, the object's
  13.          attribute list.
  14.     
  15.     _S_e_e _A_l_s_o:
  16.     
  17.          attr.
  18.     
  19.     _E_x_a_m_p_l_e_s:
  20.     
  21.          # strip an objects attributes
  22.          attributes(x) <- NULL
  23.     
  24.