libsim Versione 7.2.6

◆ optio_b()

elemental integer(kind=int_b) function, public 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.

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

Generated with Doxygen.