libsim Versione 7.1.11
|
◆ soptio_r()
Set the output value to input, if input is present, otherwise set it to missing value.
Definizione alla linea 197 del file optional_values.f90. 198REAL,INTENT(in),OPTIONAL :: var
199REAL,INTENT(out) :: optio_r
200
201if (present(var))then
202 optio_r=var
203else
204 optio_r=rmiss
205end if
206
|