|
◆ soptio_d()
elemental subroutine, public optional_values::soptio_d |
( |
double precision, intent(in), optional |
var, |
|
|
double precision, intent(out) |
optio_d |
|
) |
| |
Set the output value to input, if input is present, otherwise set it to missing value.
- Parametri
-
[in] | var | variable to be checked |
[out] | optio_d | equal to var if present, otherwise equal to the corresponding missing value |
Definizione alla linea 212 del file optional_values.f90.
212 DOUBLE PRECISION, INTENT(in), OPTIONAL :: var 213 DOUBLE PRECISION, INTENT(out) :: optio_d 215 if ( present(var)) then
|