listFinCenter           package:fCalendar           R Documentation

_L_i_s_t _o_f _F_i_n_a_n_c_i_a_l _C_e_n_t_e_r_s

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

     Lists supported financial centers.

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

     listFinCenter(pattern = ".*")

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

 pattern: a pattern character string as required by the 'grep'
          function. 

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

     The function 'rulesFinCenter', lists the daylight saving rules 
     for a selected financial center.

     There is no dependency on the POSIX implementation of your
     operating system because all time zone and day light saving time
     information  is stored locally in ASCII files.

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

     returns a list of supported financial centers.

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

     ## myFinCenter - the global setting currently used:
        myFinCenter

     ## Other Financial Centers:
        listFinCenter("Asia/")
        listFinCenter("^A")    # all beginning with "A"
        listFinCenter("^[^A]") # all *not* beginning with "A"
        listFinCenter(".*/L")  # cities with L*

        stopifnot(identical(sort(listFinCenter()), ## 'A' and 'not A' == everything:
             sort(union(listFinCenter("^A"),
                 listFinCenter("^[^A]")))))

