libsim  Versione 7.2.1

◆ optio_b()

elemental integer(kind=int_b) function, public optional_values::optio_b ( integer(kind=int_b), intent(in), optional  var)

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

Parametri
[in]varvariable to be checked

Definizione alla linea 51 del file optional_values.f90.

52 INTEGER(kind=int_b),INTENT(in),OPTIONAL :: var
53 
54 if (present(var))then
55  optio_b=var
56 else
57  optio_b=ibmiss
58 end if
59 

Generated with Doxygen.