libsim  Versione 7.1.6

◆ datetime_vect_write_unit()

subroutine datetime_vect_write_unit ( type(datetime), dimension(:), intent(in)  this,
integer, intent(in)  unit 
)

This method writes on a Fortran file unit the contents of the object this.

The record can successively be read by the ::read_unit method. The method works both on formatted and unformatted files.

Parametri
[in]thisobject to be written
[in]unitunit where to write, it must be an opened Fortran file unit

Definizione alla linea 1214 del file datetime_class.F90.

1215 LOGICAL :: res
1216 
1217 res = .NOT.(this == that)
1218 
1219 END FUNCTION timedelta_ne
1220 
1221 
1222 ELEMENTAL FUNCTION timedelta_gt(this, that) RESULT(res)
1223 TYPE(timedelta),INTENT(IN) :: this, that
1224 LOGICAL :: res
1225 
1226 res = this%iminuti > that%iminuti
1227 
1228 END FUNCTION timedelta_gt
1229 
1230 
1231 ELEMENTAL FUNCTION timedelta_lt(this, that) RESULT(res)
1232 TYPE(timedelta),INTENT(IN) :: this, that
1233 LOGICAL :: res

Generated with Doxygen.