libsim  Versione 7.2.6

◆ timedelta_to_char()

elemental character(len=23) function timedelta_to_char ( type(timedelta), intent(in)  this)

Restituisce una rappresentazione carattere stampabile di un oggetto timedelta.

Definizione alla linea 1791 del file datetime_class.F90.

1792 if (c_e(this%day) .and. c_e(this%month) .and. c_e(this%tendaysp)) return
1793 
1794 if (c_e(this%day) .and. c_e(this%month)) then
1795  dtc=datetime_new(year=1001, month=this%month, day=this%day, hour=1, minute=1)
1796 else if (c_e(this%tendaysp) .and. c_e(this%month)) then
1797  day=(this%tendaysp-1)*10+1

Generated with Doxygen.