libsim  Versione 7.1.7

◆ arrayof_datetime_append()

integer function, private datetime_class::arrayof_datetime_append ( type(arrayof_datetime this,
type(datetime), intent(in)  content 
)
private

Quick method to append an element to the array.

The return value is the position at which the element has been appended.

Parametri
thisarray object to extend
[in]contentobject of TYPE TYPE(datetime) to append

Definizione alla linea 1299 del file datetime_class.F90.

1300 
1301 ELEMENTAL FUNCTION timedelta_tlum(n, this) RESULT(res)
1302 INTEGER,INTENT(IN) :: n
1303 TYPE(timedelta),INTENT(IN) :: this
1304 TYPE(timedelta) :: res
1305 
1306 res%iminuti = this%iminuti*n
1307 res%month = this%month*n
1308 

Generated with Doxygen.