Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Functions
private pure module function to_string_1_i_int32(value) result(string)
Arguments
Type
Intent
Optional
Attributes
Name
integer(kind=int32),
intent(in)
::
value
Return Value
character(len=:), allocatable
private pure module function to_string_1_i_int64(value) result(string)
Arguments
Type
Intent
Optional
Attributes
Name
integer(kind=int64),
intent(in)
::
value
Return Value
character(len=:), allocatable
private pure module function to_string_1_l_fbool(value) result(string)
Arguments
Type
Intent
Optional
Attributes
Name
logical(kind=fbool),
intent(in)
::
value
Return Value
character(len=1)
private pure module function to_string_2_i_int32(value, format) result(string)
Arguments
Type
Intent
Optional
Attributes
Name
integer(kind=int32),
intent(in)
::
value
character(len=*),
intent(in)
::
format
Return Value
character(len=:), allocatable
private pure module function to_string_2_i_int64(value, format) result(string)
Arguments
Type
Intent
Optional
Attributes
Name
integer(kind=int64),
intent(in)
::
value
character(len=*),
intent(in)
::
format
Return Value
character(len=:), allocatable
private pure module function to_string_2_l_fbool(value, format) result(string)
Arguments
Type
Intent
Optional
Attributes
Name
logical(kind=fbool),
intent(in)
::
value
character(len=*),
intent(in)
::
format
Return Value
character(len=:), allocatable
private pure module function to_string_r_dp(value, format) result(string)
Arguments
Type
Intent
Optional
Attributes
Name
real(kind=dp),
intent(in)
::
value
character(len=*),
intent(in),
optional
::
format
Return Value
character(len=:), allocatable
private pure module function to_string_r_sp(value, format) result(string)