gtool5 Fortran 90/95 Library 1.0.0-rc5
日本語
Loading...
Searching...
No Matches
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 )

Compare integer with DC_SCALED_SEC (less or equal)

Parameters
[in]factorInteger value to compare
[in]sclsecDC_SCALED_SEC variable
Returns
.true. if factor <= sclsec, .false. otherwise

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 )

Compare DC_SCALED_SEC with integer (less or equal)

Parameters
[in]sclsecDC_SCALED_SEC variable
[in]factorInteger value to compare
Returns
.true. if sclsec <= factor, .false. otherwise

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 )

Compare two DC_SCALED_SEC variables (less or equal)

Parameters
[in]sclsec1First DC_SCALED_SEC variable
[in]sclsec2Second DC_SCALED_SEC variable
Returns
.true. if sclsec1 <= sclsec2, .false. otherwise

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: