libsim Versione 7.2.1
|
◆ arrayof_datetime_insert()
Method for inserting an element of the array at a desired position. If necessary, the array is reallocated to accomodate the new element.
Definizione alla linea 1280 del file datetime_class.F90. 1281TYPE(timedelta),INTENT(IN) :: this, that
1282TYPE(timedelta) :: res
1283
1284res%iminuti = this%iminuti - that%iminuti
1285res%month = this%month - that%month
1286
|