|
◆ soptio_log()
elemental subroutine, public optional_values::soptio_log |
( |
logical, intent(in), optional |
var, |
|
|
logical, intent(out) |
optio_log |
|
) |
| |
Set the output value to input, if input is present, otherwise set it to .FALSE.
- Parametri
-
[in] | var | variable to be checked |
[out] | optio_log | equal to var if present, otherwise equal to .false. |
Definizione alla linea 241 del file optional_values.f90.
241 LOGICAL, INTENT(in), OPTIONAL :: var 242 LOGICAL, INTENT(out) :: optio_log 244 if ( present(var)) then
|