Generic interface for writing a number to a string. The calling syntax is
str_from_num(num, frmt) where number is a real number or an integer,
format is the format desired, e.g., e15.6, i5, etc.
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 str_from_inum(num, frmt) result(str)
Arguments
Type
Intent
Optional
Attributes
Name
integer,
intent(in)
::
num
character(len=*),
intent(in),
optional
::
frmt
Return Value
character(len=:), allocatable
private pure function str_from_ilnum(num, frmt) result(str)
Arguments
Type
Intent
Optional
Attributes
Name
integer(kind=ip_long),
intent(in)
::
num
character(len=*),
intent(in),
optional
::
frmt
Return Value
character(len=:), allocatable
private pure function str_from_dnum(num, frmt) result(str)