libsim Versione 7.2.6
|
◆ datetime_vect_write_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.
Definizione alla linea 1208 del file datetime_class.F90. 1209
1210END FUNCTION timedelta_eq
1211
1212
1213ELEMENTAL FUNCTION timedelta_ne(this, that) RESULT(res)
1214TYPE(timedelta),INTENT(IN) :: this, that
1215LOGICAL :: res
1216
1217res = .NOT.(this == that)
1218
1219END FUNCTION timedelta_ne
1220
1221
1222ELEMENTAL FUNCTION timedelta_gt(this, that) RESULT(res)
1223TYPE(timedelta),INTENT(IN) :: this, that
1224LOGICAL :: res
1225
1226res = this%iminuti > that%iminuti
1227
|