gtool5 Fortran 90/95 ライブラリ 1.0.0-rc5
English
Loading...
Searching...
No Matches
dc_scaledsec::operator(>=) Interface Reference

Public Member Functions

logical function dcscaledsec_ge_ss (sclsec1, sclsec2)
logical function dcscaledsec_ge_si (sclsec, factor)
logical function dcscaledsec_ge_is (factor, sclsec)

Detailed Description

Definition at line 171 of file dc_scaledsec.f90.

Member Function/Subroutine Documentation

◆ dcscaledsec_ge_is()

logical function dc_scaledsec::operator(>=)::dcscaledsec_ge_is ( integer, intent(in) factor,
type(dc_scaled_sec), intent(in) sclsec )

整数と DC_SCALED_SEC の以上比較

Parameters
[in]factor比較する整数値
[in]sclsecDC_SCALED_SEC 型変数
Returns
factor >= sclsec なら .true., そうでなければ .false.

Definition at line 1027 of file dc_scaledsec.f90.

1028 implicit none
1029 integer, intent(in):: factor
1030 type(DC_SCALED_SEC), intent(in):: sclsec
1031 continue
1032 result = .not. factor < sclsec

◆ dcscaledsec_ge_si()

logical function dc_scaledsec::operator(>=)::dcscaledsec_ge_si ( type(dc_scaled_sec), intent(in) sclsec,
integer, intent(in) factor )

DC_SCALED_SEC と整数の以上比較

Parameters
[in]sclsecDC_SCALED_SEC 型変数
[in]factor比較する整数値
Returns
sclsec >= factor なら .true., そうでなければ .false.

Definition at line 1004 of file dc_scaledsec.f90.

1005 implicit none
1006 type(DC_SCALED_SEC), intent(in):: sclsec
1007 integer, intent(in):: factor
1008 continue
1009 result = .not. sclsec < factor

◆ dcscaledsec_ge_ss()

logical function dc_scaledsec::operator(>=)::dcscaledsec_ge_ss ( type(dc_scaled_sec), intent(in) sclsec1,
type(dc_scaled_sec), intent(in) sclsec2 )

2つの DC_SCALED_SEC 型変数の以上比較

Parameters
[in]sclsec11番目の DC_SCALED_SEC 型変数
[in]sclsec22番目の DC_SCALED_SEC 型変数
Returns
sclsec1 >= sclsec2 なら .true., そうでなければ .false.

Definition at line 982 of file dc_scaledsec.f90.

983 implicit none
984 type(DC_SCALED_SEC), intent(in):: sclsec1, sclsec2
985 continue
986 result = .not. sclsec1 < sclsec2

The documentation for this interface was generated from the following file: