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 / environment < prev    next >
Encoding:
Text File  |  1997-04-23  |  483 b   |  19 lines

  1.     
  2.     _E_n_v_i_r_o_n_m_e_n_t _A_c_c_e_s_s
  3.     
  4.          environment(x=NULL)
  5.          environment(x) <- value
  6.     
  7.     _V_a_l_u_e:
  8.     
  9.          If x is a function then environment(x) returns the
  10.          environment associated with that function.  If x is
  11.          NULL then the global environment is returned.
  12.     
  13.          The assignment form sets the environment of the func-
  14.          tion x to the value given.
  15.     
  16.          It is an error for x to be anything other than a func-
  17.          tion or NULL.
  18.     
  19.