gtool5 Fortran 90/95 ライブラリ 1.0.0-rc5
English
Loading...
Searching...
No Matches
Public Member Functions | List of all members
dc_scaledsec::operator(<=) Interface Reference

Public Member Functions

logical function dcscaledsec_le_ss (sclsec1, sclsec2)
 
logical function dcscaledsec_le_si (sclsec, factor)
 
logical function dcscaledsec_le_is (factor, sclsec)
 

Detailed Description

Definition at line 177 of file dc_scaledsec.f90.

Member Function/Subroutine Documentation

◆ dcscaledsec_le_is()

logical function dc_scaledsec::operator(<=)::dcscaledsec_le_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 1095 of file dc_scaledsec.f90.

1096 implicit none
1097 integer, intent(in):: factor
1098 type(DC_SCALED_SEC), intent(in):: sclsec
1099 continue
1100 result = .not. factor > sclsec

◆ dcscaledsec_le_si()

logical function dc_scaledsec::operator(<=)::dcscaledsec_le_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 1072 of file dc_scaledsec.f90.

1073 implicit none
1074 type(DC_SCALED_SEC), intent(in):: sclsec
1075 integer, intent(in):: factor
1076 continue
1077 result = .not. sclsec > factor

◆ dcscaledsec_le_ss()

logical function dc_scaledsec::operator(<=)::dcscaledsec_le_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 1050 of file dc_scaledsec.f90.

1051 implicit none
1052 type(DC_SCALED_SEC), intent(in):: sclsec1, sclsec2
1053 continue
1054 result = .not. sclsec1 > sclsec2

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