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.
Variables
Type
Visibility
Attributes
Name
Initial
integer,
private
::
trimmed_len
Source Code
pure function is_blank_or_control(line)result(res)!! Check if a line is blank or a control line (starts with '$')character(len=*),intent(in)::linelogical::resinteger::trimmed_lentrimmed_len=len_trim(line)if(trimmed_len==0)thenres=.true.elseres=(line(1:1)=='$')end if end function is_blank_or_control