gtool5 Fortran 90/95 ライブラリ 1.0.0-rc5
English
Loading...
Searching...
No Matches
historyinitialized.f90 File Reference

GT_HISTORY の初期設定チェッカ . More...

Go to the source code of this file.

Functions/Subroutines

logical function historyinitialized0 (history)
logical function historyinitialized1 (history)

Detailed Description

GT_HISTORY の初期設定チェッカ .

Author
Yasuhiro MORIKAWA

Definition in file historyinitialized.f90.

Function/Subroutine Documentation

◆ historyinitialized0()

logical function historyinitialized0 ( type(gt_history), intent(in) history)

GT_HISTORY の初期設定チェック

history が初期設定されている場合には .true. が、 初期設定されていない場合には .false. が返ります。

Parameters
[in]historyヒストリーハンドル
Returns
初期設定済みなら .true.

Definition at line 32 of file historyinitialized.f90.

34 implicit none
35 type(GT_HISTORY), intent(in):: history
36 continue
37 result = history % initialized

◆ historyinitialized1()

logical function historyinitialized1 ( type(gt_history), intent(in) history)

GT_HISTORY の初期設定チェック (総称インターフェース)

使用方法は HistoryInitialized と同様です。

Definition at line 52 of file historyinitialized.f90.

55 implicit none
56 type(GT_HISTORY), intent(in):: history
57 continue
58 result = historyinitialized( history )