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.
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.
Module Procedures
private pure function optional_int32(input_value, default_value) result(output)
Arguments
Type
Intent
Optional
Attributes
Name
integer(kind=int32),
intent(in),
optional
::
input_value
integer(kind=int32),
intent(in)
::
default_value
Return Value
integer(kind=int32)
private pure function optional_int64(input_value, default_value) result(output)
Arguments
Type
Intent
Optional
Attributes
Name
integer(kind=int64),
intent(in),
optional
::
input_value
integer(kind=int64),
intent(in)
::
default_value
Return Value
integer(kind=int64)
private pure function optional_sp(input_value, default_value) result(output)
Arguments
Type
Intent
Optional
Attributes
Name
real(kind=sp),
intent(in),
optional
::
input_value
real(kind=sp),
intent(in)
::
default_value
Return Value
real(kind=sp)
private pure function optional_dp(input_value, default_value) result(output)
Arguments
Type
Intent
Optional
Attributes
Name
real(kind=dp),
intent(in),
optional
::
input_value
real(kind=dp),
intent(in)
::
default_value
Return Value
real(kind=dp)
private pure function optional_char(input_value, default_value) result(output)
Arguments
Type
Intent
Optional
Attributes
Name
character(len=*),
intent(in),
optional
::
input_value
character(len=*),
intent(in)
::
default_value
Return Value
character(len=:), allocatable
private pure function optional_logical(input_value, default_value) result(output)