libsim Versione 7.1.11
|
◆ arrayof_datetime_append()
Quick method to append an element to the array. The return value is the position at which the element has been appended.
Definizione alla linea 1299 del file datetime_class.F90. 1300
1301ELEMENTAL FUNCTION timedelta_tlum(n, this) RESULT(res)
1302INTEGER,INTENT(IN) :: n
1303TYPE(timedelta),INTENT(IN) :: this
1304TYPE(timedelta) :: res
1305
1306res%iminuti = this%iminuti*n
1307res%month = this%month*n
1308
|