rebind            package:externalVector            R Documentation

_A_l_l_o_c_a_t_e _a _n_e_w _e_x_t_e_r_n_a_l _v_e_c_t_o_r _w_i_t_h _e_x_t_e_r_n_a_l _s_t_o_r_a_g_e

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

     This function allocates a new "externalVectorWithStorage" object
     with possibly new length, type, names, dimension or dimnames.

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

     rebind(x, length.x = length(x), type = x@storage@type,
            names.x = x@Names, dim.x = x@Dim,
            dimnames.x = x@DimNames, ..., arrayOnly = FALSE)

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

       x: An object of class "externalVectorWithStorage". 

length.x: New length. 

    type: New type. 

 names.x: New names. 

   dim.x: New dimension. 

dimnames.x: New dimnames. 

     ...: Other arguments passed to initializer of the class of 'x'.

arrayOnly: Just create the data part with no names, dimensions or
          dimnames. 

_V_a_l_u_e:

     A new object of same class as 'x'.

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

     'externalVectorWithStorage-class'

