libsim Versione 7.2.6

◆ optio_d()

elemental double precision function, public optio_d ( double precision, intent(in), optional var)

Return the optional value if present, otherwise return missing value.

Parametri
[in]varvariable to be checked

Definizione alla linea 111 del file optional_values.f90.

112DOUBLE PRECISION,INTENT(in),OPTIONAL :: var !< variable to be checked
113
114if (present(var))then
115 optio_d=var
116else
117 optio_d=rdmiss
118end if
119

Generated with Doxygen.