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.
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.
function indeces_in_array(entries,array)result(outarray)! Get the indeces in array of entries! outarray must be the same length as entries and arraycharacter(len=*),dimension(:),intent(in)::entries,arrayinteger,dimension(size(entries))::outarrayinteger ido i=1,size(entries)outarray(i)=string_index(entries(i),array)end do end function indeces_in_array