libsim Versione 7.1.11
|
◆ datetime_vect_read_unit()
This method reads from a Fortran file unit the contents of the object this. The record to be read must have been written with the ::write_unit method. The method works both on formatted and unformatted files.
Definizione alla linea 1174 del file datetime_class.F90. 1175TYPE(timedelta),INTENT(IN) :: this
1176INTEGER(kind=int_ll) :: timedelta_getamsec
1177
1178timedelta_getamsec = this%iminuti
1179
1180END FUNCTION timedelta_getamsec
1181
1182
1188FUNCTION timedelta_depop(this)
1189TYPE(timedelta),INTENT(IN) :: this
1190TYPE(timedelta) :: timedelta_depop
1191
1192TYPE(datetime) :: tmpdt
1193
|