|
◆ 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] | this | object to be written |
[in] | unit | unit where to write, it must be an opened Fortran file unit |
Definizione alla linea 1234 del file datetime_class.F90.
1235 res = this%iminuti < that%iminuti 1237 END FUNCTION timedelta_lt 1240 ELEMENTAL FUNCTION timedelta_ge(this, that) RESULT(res) 1241 TYPE(timedelta), INTENT(IN) :: this, that 1244 IF (this == that) THEN 1246 ELSE IF (this > that) THEN 1252 END FUNCTION timedelta_ge
|