|
◆ soptio_c()
elemental subroutine, public optional_values::soptio_c |
( |
character (len=*), intent(in), optional |
var, |
|
|
character (len=*), intent(out) |
optio_c |
|
) |
| |
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_c | equal to var if present, otherwise equal to the corresponding missing value |
Definizione alla linea 227 del file optional_values.f90.
230 if ( present(var)) then
|