Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ESMF_State), | intent(in), | optional | :: | s |
function ESMF_StateGetInit(s) ! ! !RETURN VALUE: ESMF_INIT_TYPE :: ESMF_StateGetInit ! ! !ARGUMENTS: type(ESMF_State), intent(in), optional :: s ! ! !DESCRIPTION: ! Access deep object init code. ! ! The arguments are: ! \begin{description} ! \item [s] ! State object. ! \end{description} ! !EOPI if (present(s)) then ESMF_StateGetInit = ESMF_INIT_GET(s) else ESMF_StateGetInit = ESMF_INIT_CREATED endif end function ESMF_StateGetInit