c                 package:fCalendar                 R Documentation

_C_o_n_c_a_t_e_n_a_t_i_n_g '_t_i_m_e_D_a_t_e' _O_b_j_e_c_t_s

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

     Concatenates 'timeDate' objects.

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

     ## S3 method for class 'timeDate':
     c(..., recursive = FALSE)

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

recursive: a logical. If recursive  is set to 'TRUE', the function 
          recursively descends through lists combining all their
          elements  into a vector.  

     ...: arguments passed to other methods. 

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

     returns an object of class '"timeDate"'.

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

     ## timeCalendar -
        # Create Character Vectors:
        GMT = timeCalendar(zone = "GMT", FinCenter = "GMT") + 16*3600
        ZUR = timeCalendar(zone = "GMT", FinCenter = "Zurich") + 16*3600
        
     ## c - 
        # Concatenate and Replicate timeDate Objects:
        sort(c(GMT, ZUR))
        sort(c(ZUR, GMT))

