|
◆ soptio_l()
elemental subroutine soptio_l |
( |
integer(kind=int_l), intent(in), optional |
var, |
|
|
integer(kind=int_l), intent(out) |
optio_l |
|
) |
| |
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_l | equal to var if present, otherwise equal to the corresponding missing value |
Definizione alla linea 184 del file optional_values.f90.
184 INTEGER(kind=int_l), INTENT(in), OPTIONAL :: var 185 INTEGER(kind=int_l), INTENT(out) :: optio_l 187 if ( present(var)) then
|