gtool5 Fortran 90/95 ライブラリ 1.0.0-rc5
English
Loading...
Searching...
No Matches
hstnmlinfoinitialized.f90
Go to the documentation of this file.
1!> @file hstnmlinfoinitialized.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 initialization 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 initialization of gtool_history_nmlinfo_types::GTHST_NMLINFO
17 !>
18 !> If @p gthstnml is initialized, .true. is returned.
19 !> If @p gthstnml is not initialized, .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 hstnmlinfoinitialized( gthstnml ) result(result)
33 implicit none
34 type(gthst_nmlinfo), intent(in):: gthstnml
35 continue
36 result = gthstnml % initialized
37 end function hstnmlinfoinitialized
logical function hstnmlinfoinitialized(gthstnml)