libsim  Versione 7.1.7

◆ optio_d()

elemental double precision function, public optional_values::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.

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

Generated with Doxygen.