ns-dblcolon               package:base               R Documentation

_D_o_u_b_l_e _C_o_l_o_n _a_n_d _T_r_i_p_l_e _C_o_l_o_n _O_p_e_r_a_t_o_r_s

_D_e_s_c_r_i_p_t_i_o_n:

     Accessing exported and internal variables in a name space.

_U_s_a_g_e:

     pkg::name
     pkg:::name

_A_r_g_u_m_e_n_t_s:

     pkg: package name symbol or literal character string.

    name: variable name symbol or literal character string.

_D_e_t_a_i_l_s:

     The expression 'pkg::name' returns the value of the exported
     variable 'name' in package 'pkg' if the package has a name space. 
     The expression 'pkg:::name' returns the value of the internal
     variable 'name' in package 'pkg' if the package has a name space. 
     The package will be loaded if it was not loaded already before the
     call.  Assignment into name spaces is not supported.

_S_e_e _A_l_s_o:

     'get' to access an object masked by another of the same name.

_E_x_a_m_p_l_e_s:

     base::log
     base::"+"

