gtool5 Fortran 90/95 Library 1.0.0-rc5
日本語
Loading...
Searching...
No Matches
hstnmlinfodefinemode.f90
Go to the documentation of this file.
1!> @file hstnmlinfodefinemode.f90
2!>
3!> @author Yasuhiro MORIKAWA
4!> @copyright Copyright (C) GFD Dennou Club, 2007-2026. All rights reserved. <br/>
5!> License is BSD-2-Clause. See [COPYRIGHT](@ref COPYRIGHT) in detail
6!>
7!> @en
8!> @brief Checker of define mode of gtool_history_nmlinfo_types::GTHST_NMLINFO
9!> @enden
10!>
11!> @ja
12!> @brief gtool_history_nmlinfo_types::GTHST_NMLINFO 型の変数の定義モードチェック
13!> @endja
14
15 !> @en
16 !> @brief Check define mode of gtool_history_nmlinfo_types::GTHST_NMLINFO
17 !>
18 !> If @p gthstnml is define mode, .true. is returned.
19 !> If @p gthstnml is not define mode, .false. is returned.
20 !> @enden
21 !>
22 !> @ja
23 !> @brief gtool_history_nmlinfo_types::GTHST_NMLINFO の定義モードチェック
24 !>
25 !> @p gthstnml が定義モードであれば .true. が,
26 !> 定義モードでなければ .false. が返ります.
27 !> @endja
28 !>
29 !> @param[in] gthstnml gtool_history_nmlinfo_types::GTHST_NMLINFO 型変数
30 !> @return 定義モードであれば .true.
31 logical function hstnmlinfodefinemode( gthstnml ) result(result)
33 implicit none
34 type(gthst_nmlinfo), intent(in):: gthstnml
35 continue
36 result = gthstnml % define_mode
37 end function hstnmlinfodefinemode
logical function hstnmlinfodefinemode(gthstnml)