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 114 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 )

Definition at line 919 of file dc_scaledsec.f90.

920 !
921 ! 2 つの DC_SCALED_SEC 型変数の比較
922 !
923 ! Comparison of two "DC_SCALED_SEC" variables
924 !
925 implicit none
926 integer, intent(in):: factor
927 type(DC_SCALED_SEC), intent(in):: sclsec
928 continue
929 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 )

Definition at line 904 of file dc_scaledsec.f90.

905 !
906 ! 2 つの DC_SCALED_SEC 型変数の比較
907 !
908 ! Comparison of two "DC_SCALED_SEC" variables
909 !
910 implicit none
911 type(DC_SCALED_SEC), intent(in):: sclsec
912 integer, intent(in):: factor
913 continue
914 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 )

Definition at line 890 of file dc_scaledsec.f90.

891 !
892 ! 2 つの DC_SCALED_SEC 型変数の比較
893 !
894 ! Comparison of two "DC_SCALED_SEC" variables
895 !
896 implicit none
897 type(DC_SCALED_SEC), intent(in):: sclsec1, sclsec2
898 continue
899 result = .not. sclsec1 > sclsec2

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